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