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