DBTEAMRevokeLinkedApiAppBatchArgSerializer
Objective-C
@interface DBTEAMRevokeLinkedApiAppBatchArgSerializer : NSObject
Swift
class DBTEAMRevokeLinkedApiAppBatchArgSerializer : NSObject
The serialization class for the RevokeLinkedApiAppBatchArg
struct.
-
Serializes
DBTEAMRevokeLinkedApiAppBatchArg
instances.Declaration
Objective-C
+ (nullable NSDictionary<NSString *, id> *)serialize: (nonnull DBTEAMRevokeLinkedApiAppBatchArg *)instance;
Swift
class func serialize(_ instance: DBTEAMRevokeLinkedApiAppBatchArg) -> [String : Any]?
Parameters
instance
An instance of the
DBTEAMRevokeLinkedApiAppBatchArg
API object.Return Value
A json-compatible dictionary representation of the
DBTEAMRevokeLinkedApiAppBatchArg
API object. -
Deserializes
DBTEAMRevokeLinkedApiAppBatchArg
instances.Declaration
Objective-C
+ (nonnull DBTEAMRevokeLinkedApiAppBatchArg *)deserialize: (nonnull NSDictionary<NSString *, id> *)dict;
Swift
class func deserialize(_ dict: [String : Any]) -> DBTEAMRevokeLinkedApiAppBatchArg
Parameters
dict
A json-compatible dictionary representation of the
DBTEAMRevokeLinkedApiAppBatchArg
API object.Return Value
An instantiation of the
DBTEAMRevokeLinkedApiAppBatchArg
object.