mirror of
https://bitbucket.org/vendoo/vendoo_v1.0.git
synced 2025-12-25 19:57:41 +00:00
35 lines
920 B
Objective-C
35 lines
920 B
Objective-C
// Generated by xsd compiler for ios/objective-c
|
|
// DO NOT CHANGE!
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "SOAP11Body.h"
|
|
#import "OrderedDictionary.h"
|
|
|
|
@implementation SOAP11Body
|
|
|
|
@synthesize any = _any;
|
|
|
|
// class meta-data method
|
|
// note: this method is only for internal use, DO NOT CHANGE!
|
|
+(PicoClassSchema *)getClassMetaData {
|
|
PicoClassSchema *cs = [[PicoClassSchema alloc] initWithXmlName:@"Body" nsUri:@"http://schemas.xmlsoap.org/soap/envelope/"];
|
|
return cs;
|
|
}
|
|
|
|
// 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_ANY_ELEMENT xmlName:@"any" propertyName:@"any" type:PICO_TYPE_ANYELEMENT clazz:nil];
|
|
map[@"any"] = ps;
|
|
|
|
return map;
|
|
}
|
|
|
|
|
|
|
|
|
|
@end
|