VerifiedIdentityVerification

@Serializable
@SerialName(value = "VERIFIED")
data class VerifiedIdentityVerification(val id: String, val verifiedCustomer: IdentityVerificationVerifiedCustomer, val requestedAt: @Serializable(with = InstantSerializer::class) Instant, val updatedAt: @Serializable(with = InstantSerializer::class) Instant, val statusChangedAt: @Serializable(with = InstantSerializer::class) Instant, val verifiedAt: @Serializable(with = InstantSerializer::class) Instant, val pgTxId: String, val pgRawResponse: String, val channel: SelectedChannel? = null, val customData: String? = null) : IdentityVerification

완료된 본인인증 내역

Constructors

Link copied to clipboard
constructor(id: String, verifiedCustomer: IdentityVerificationVerifiedCustomer, requestedAt: @Serializable(with = InstantSerializer::class) Instant, updatedAt: @Serializable(with = InstantSerializer::class) Instant, statusChangedAt: @Serializable(with = InstantSerializer::class) Instant, verifiedAt: @Serializable(with = InstantSerializer::class) Instant, pgTxId: String, pgRawResponse: String, channel: SelectedChannel? = null, customData: String? = null)

Properties

Link copied to clipboard
open override val channel: SelectedChannel? = null

사용된 본인인증 채널

Link copied to clipboard
open override val customData: String? = null

사용자 지정 데이터

Link copied to clipboard
open override val id: String

본인인증 내역 아이디

Link copied to clipboard

PG사 응답 데이터

Link copied to clipboard

본인인증 내역 PG사 아이디

Link copied to clipboard
open override val requestedAt: @Serializable(with = InstantSerializer::class) Instant

본인인증 요청 시점

Link copied to clipboard
open override val statusChangedAt: @Serializable(with = InstantSerializer::class) Instant

상태 업데이트 시점

Link copied to clipboard
open override val updatedAt: @Serializable(with = InstantSerializer::class) Instant

업데이트 시점

Link copied to clipboard
val verifiedAt: @Serializable(with = InstantSerializer::class) Instant

본인인증 완료 시점

Link copied to clipboard