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