Okechi Onyeje 031a354996 Ebay Listing Now Posts both information and single image
need to rework on categories since subcategory workflow added some complications, but that will be taken care of in a bug fix task
2016-08-23 13:48:34 -04:00

70 lines
1.1 KiB
Objective-C

// Generated by xsd compiler for ios/objective-c
// DO NOT CHANGE!
#import <Foundation/Foundation.h>
#import "PicoClassSchema.h"
#import "PicoPropertySchema.h"
#import "PicoConstants.h"
#import "PicoBindable.h"
@class SOAP12Faultreason;
@class SOAP12Detail;
@class SOAP12Faultcode;
/**
Fault reporting structure
*/
@interface SOAP12Fault : NSObject <PicoBindable> {
@private
SOAP12Faultcode *_code;
SOAP12Faultreason *_reason;
NSString *_node;
NSString *_role;
SOAP12Detail *_detail;
}
/**
(public property)
type : class SOAP12Faultcode
*/
@property (nonatomic, strong) SOAP12Faultcode *code;
/**
(public property)
type : class SOAP12Faultreason
*/
@property (nonatomic, strong) SOAP12Faultreason *reason;
/**
(public property)
type : NSString, wrapper for primitive string
*/
@property (nonatomic, strong) NSString *node;
/**
(public property)
type : NSString, wrapper for primitive string
*/
@property (nonatomic, strong) NSString *role;
/**
(public property)
type : class SOAP12Detail
*/
@property (nonatomic, strong) SOAP12Detail *detail;
@end