DBTEAMLOGGoogleSsoChangePolicyDetails
Objective-C
@interface DBTEAMLOGGoogleSsoChangePolicyDetails
    : NSObject <DBSerializable, NSCopying>
                Swift
class DBTEAMLOGGoogleSsoChangePolicyDetails : NSObject, DBSerializable, NSCopying
                The GoogleSsoChangePolicyDetails struct.
Enabled/disabled Google single sign-on for team.
This class implements the DBSerializable protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
- 
                  
                  
New Google single sign-on policy.
Declaration
Objective-C
@property (nonatomic, readonly) DBTEAMLOGGoogleSsoPolicy *_Nonnull dNewValue;Swift
var dNewValue: DBTEAMLOGGoogleSsoPolicy { get } - 
                  
                  
Previous Google single sign-on policy. Might be missing due to historical data gap.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) DBTEAMLOGGoogleSsoPolicy *previousValue;Swift
var previousValue: DBTEAMLOGGoogleSsoPolicy? { get } 
- 
                  
                  
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype) initWithDNewValue:(nonnull DBTEAMLOGGoogleSsoPolicy *)dNewValue previousValue:(nullable DBTEAMLOGGoogleSsoPolicy *)previousValue;Swift
init(dNewValue: DBTEAMLOGGoogleSsoPolicy, previousValue: DBTEAMLOGGoogleSsoPolicy?)Parameters
dNewValueNew Google single sign-on policy.
previousValuePrevious Google single sign-on policy. Might be missing due to historical data gap.
Return Value
An initialized instance.
 - 
                  
                  
Convenience constructor (exposes only non-nullable instance variables with no default value).
Declaration
Objective-C
- (nonnull instancetype)initWithDNewValue: (nonnull DBTEAMLOGGoogleSsoPolicy *)dNewValue;Swift
init(dNewValue: DBTEAMLOGGoogleSsoPolicy)Parameters
dNewValueNew Google single sign-on policy.
Return Value
An initialized instance.
 
View on GitHub
        DBTEAMLOGGoogleSsoChangePolicyDetails Class Reference