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