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