@portone/server-sdk
    Preparing search index...

    Type Alias DeletedBillingKeyInfo

    빌링키 삭제 완료 상태 건

    type DeletedBillingKeyInfo = {
        status: "DELETED";
        billingKey: string;
        merchantId: string;
        storeId: string;
        methods?: BillingKeyPaymentMethod[];
        channels: SelectedChannel[];
        customer: Customer;
        customData?: string;
        issueId?: string;
        issueName?: string;
        requestedAt?: string;
        issuedAt: string;
        channelGroup?: ChannelGroupSummary;
        pgBillingKeyIssueResponses?: PgBillingKeyIssueResponse[];
        deletedAt: string;
    }
    Index

    Properties

    status: "DELETED"

    빌링키 상태

    billingKey: string

    빌링키

    merchantId: string

    고객사 아이디

    storeId: string

    상점 아이디

    빌링키 결제수단 상세 정보

    추후 슈퍼빌링키 기능 제공 시 여러 결제수단 정보가 담길 수 있습니다.

    channels: SelectedChannel[]

    빌링키 발급 시 사용된 채널

    추후 슈퍼빌링키 기능 제공 시 여러 채널 정보가 담길 수 있습니다.

    customer: Customer

    고객 정보

    customData?: string

    사용자 지정 데이터

    issueId?: string

    고객사가 채번하는 빌링키 발급 건 고유 아이디

    issueName?: string

    빌링키 발급 건 이름

    requestedAt?: string

    발급 요청 시점 (RFC 3339 date-time)

    issuedAt: string

    발급 시점 (RFC 3339 date-time)

    channelGroup?: ChannelGroupSummary

    채널 그룹

    pgBillingKeyIssueResponses?: PgBillingKeyIssueResponse[]

    채널 별 빌링키 발급 응답

    슈퍼빌링키의 경우, 빌링키 발급이 성공하더라도 일부 채널에 대한 발급은 실패할 수 있습니다.

    deletedAt: string

    발급 삭제 시점 (RFC 3339 date-time)