vendoo_v1.0/Pods/PicoKit/Pod/WebService/PicoXMLRequestOperation.h
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

49 lines
1.2 KiB
Objective-C

//
// PicoXMLRequestOperation.h
// Pico
//
// Created by bulldog on 13-3-18.
// Copyright (c) 2013 LeanSoft Technology. All rights reserved.
//
#import <AFNetworking/AFNetworking.h>
#import "PicoConstants.h"
#import "PicoConfig.h"
/**
`PicoXMLRequestOperation` is a subclass of `AFHTTPRequestOperation` for Pico XML binding support.
## Acceptable Content Types
By default, `PicoSOAPRequestOperation` accepts the following MIME types:
- `text/xml`
*/
@interface PicoXMLRequestOperation : AFHTTPRequestOperation
///----------------------------
/// @name Getting Response Data
///----------------------------
/**
A Pico bindable object constructed from the response data. If an error occurs while parsing, `nil` will be returned, and the `error` property will be set to the error.
*/
@property (readonly, nonatomic, strong) id responseObj;
/**
Target Pico binding class
*/
@property (readwrite, nonatomic, strong) Class responseClazz;
/**
output debug info, such as response xml message
*/
@property (readwrite, nonatomic, assign) BOOL debug;
/**
Configurations like encoding, date/number formatter, etc
*/
@property (readwrite, nonatomic, strong) PicoConfig *config;
@end