HID APPROVE SDK
5.13
HID Approve SDK for iOS/macOS
|
Represents a parameter consisting of an id/value pair. More...
#import <HIDParameter.h>
Instance Methods | |
(id) | - initWithString:forKey: |
Initializes an instance of parameter with specified key and value. More... | |
Class Methods | |
(id) | + parameterWithString:forKey: |
Creates an instance of parameter with specified key and value. More... | |
Properties | |
HIDParameterEncoding | encoding |
The parameter encoding. | |
NSString * | key |
The parameter key. | |
HIDParameterType | type |
The parameter type. | |
NSString * | value |
The parameter value. | |
Represents a parameter consisting of an id/value pair.
Reserved for future use, a type and encoding attribute are also available to represent more complex data.
- (id) initWithString: | (NSString *) | value | |
forKey: | (NSString *) | key | |
Initializes an instance of parameter with specified key and value.
value | the parameter value. |
key | the parameter key. |
Encoding is HIDParameterEncodingNone (HIDParameterEncoding) and type is HIDParameterTypeString (HIDParameterType).
+ (id) parameterWithString: | (NSString *) | value | |
forKey: | (NSString *) | key | |
Creates an instance of parameter with specified key and value.
value | the parameter value. |
key | the parameter key. |
Encoding is HIDParameterEncodingNone (HIDParameterEncoding) and type is HIDParameterTypeString (HIDParameterType).