DBTEAMLOGSsoAddLoginUrlDetails

Objective-C

@interface DBTEAMLOGSsoAddLoginUrlDetails : NSObject <DBSerializable, NSCopying>

Swift

class DBTEAMLOGSsoAddLoginUrlDetails : NSObject, DBSerializable, NSCopying

The SsoAddLoginUrlDetails struct.

Added sign-in URL for SSO.

This class implements the DBSerializable protocol (serialize and deserialize instance methods), which is required for all Obj-C SDK API route objects.

Instance fields

  • New single sign-on login URL.

    Declaration

    Objective-C

    @property (nonatomic, copy, readonly) NSString *_Nonnull dNewValue;

    Swift

    var dNewValue: String { get }

Constructors

  • Full constructor for the struct (exposes all instance variables).

    Declaration

    Objective-C

    - (nonnull instancetype)initWithDNewValue:(nonnull NSString *)dNewValue;

    Swift

    init(dNewValue: String)

    Parameters

    dNewValue

    New single sign-on login URL.

    Return Value

    An initialized instance.