mirror of
https://bitbucket.org/vendoo/vendoo_v1.0.git
synced 2025-12-25 19:57:41 +00:00
38 lines
1.0 KiB
Objective-C
38 lines
1.0 KiB
Objective-C
// Generated by xsd compiler for ios/objective-c
|
|
// DO NOT CHANGE!
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "SOAP12Subcode.h"
|
|
#import "SOAP12Subcode.h"
|
|
#import "OrderedDictionary.h"
|
|
|
|
@implementation SOAP12Subcode
|
|
|
|
@synthesize value = _value;
|
|
@synthesize subcode = _subcode;
|
|
|
|
// class meta-data method
|
|
// note: this method is only for internal use, DO NOT CHANGE!
|
|
+(PicoClassSchema *)getClassMetaData {
|
|
return nil;
|
|
}
|
|
|
|
// property meta-data method
|
|
// note: this method is only for internal use, DO NOT CHANGE!
|
|
+(NSMutableDictionary *)getPropertyMetaData {
|
|
NSMutableDictionary *map = [OrderedDictionary dictionary];
|
|
|
|
PicoPropertySchema *ps = nil;
|
|
ps = [[PicoPropertySchema alloc] initWithKind:PICO_KIND_ELEMENT xmlName:@"Value" propertyName:@"value" type:PICO_TYPE_QNAME clazz:nil];
|
|
map[@"value"] = ps;
|
|
ps = [[PicoPropertySchema alloc] initWithKind:PICO_KIND_ELEMENT xmlName:@"Subcode" propertyName:@"subcode" type:PICO_TYPE_OBJECT clazz:[SOAP12Subcode class]];
|
|
map[@"subcode"] = ps;
|
|
|
|
return map;
|
|
}
|
|
|
|
|
|
|
|
|
|
@end
|