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