STDSJSONEncodable Protocol Reference
Conforms to | NSObject |
---|---|
Declared in | STDSJSONEncodable.h |
+ propertyNamesToJSONKeysMapping
required method
Returns a map of property names to their JSON representation’s key value. For example, STDSChallengeParameters
has a property called acsTransactionID
, but the 3DS2 JSON spec expects a field called acsTransID
. This dictionary represents a mapping from the former to the latter (in other words, [STDSChallengeParameters propertyNamesToJSONKeysMapping][@“acsTransactionID”] == @“acsTransID”.)
+ (NSDictionary *)propertyNamesToJSONKeysMapping
Discussion
Returns a map of property names to their JSON representation’s key value. For example, STDSChallengeParameters
has a property called acsTransactionID
, but the 3DS2 JSON spec expects a field called acsTransID
. This dictionary represents a mapping from the former to the latter (in other words, [STDSChallengeParameters propertyNamesToJSONKeysMapping][@“acsTransactionID”] == @“acsTransID”.)
Declared In
STDSJSONEncodable.h