AgeAuthInfo

public struct AgeAuthInfo : Codable

사용자의 연령인증 정보를 제공합니다.

  • id

    id 인증 여부를 확인하는 user의 id

    Declaration

    Swift

    public let id: Int64?
  • auth_level 유저가 받은 인증레벨. AUTH_LEVEL1, AUTH_LEVEL2 중 하나.

    Declaration

    Swift

    public let authLevel: AuthLevel?
  • authLevelCode 1 (auth_level : AUTH_LEVEL1) / 2 (auth_level : AUTH_LEVEL2)

    Declaration

    Swift

    public let authLevelCode: Int?
  • bypassAgeLimit true : 인증 받은 연령이 제한 나이 이상 / false : 인증 받은 연령이 제한 나이 미만

    Declaration

    Swift

    public let bypassAgeLimit: Bool?
  • authenticatedAt 인증 받은 시각. RFC3339 internet date/time format

    Declaration

    Swift

    public let authenticatedAt: Date?
  • ciNeedsAgreement 사용자 동의를 받으면 ci를 가지고 갈 수 있는지 여부

    Declaration

    Swift

    public let ciNeedsAgreement: Bool?
  • ci

    ci 인증후 받은 CI 값

    Declaration

    Swift

    public let ci: String?