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