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