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
dNewValue
New Google single sign-on policy.
previousValue
Previous 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
dNewValue
New Google single sign-on policy.
Return Value
An initialized instance.