ProfileRequest

public struct ProfileRequest : Codable

Profile request model.

  • Name of the profile.

    Declaration

    Swift

    public var profile: String
  • Status of the application for the Account to attain the requested profile.

    Declaration

    Swift

    public var statusString: String
  • Status of the application for the Account to attain the requested profile. Check statusString if nil.

    Declaration

    Swift

    public var status: AccountStatus? { get }
  • The current stage in the verification process.

    Declaration

    Swift

    public var stageString: String?
  • The current stage in the verification process. Check stageString if nil.

    Declaration

    Swift

    public var stage: AccountStage? { get }
  • The reason why the profile verification is in a particular status.

    Declaration

    Swift

    public var statusReasonString: String?
  • The reason why the profile verification is in a particular status. Check statusReasonString if nil.

    Declaration

    Swift

    public var statusReason: AccountStatusReason? { get }