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