Interface GetMetadataRefreshResponse

interface GetMetadataRefreshResponse {
    collection_address: string;
    completed_at?: null | string;
    refresh_id: string;
    started_at: string;
    status: GetMetadataRefreshResponseStatusEnum;
    summary: MetadataRefreshSummary[];
}

Hierarchy

  • GetMetadataRefreshResponse
    • GetMetadataRefreshResponse

Properties

collection_address: string

The collection address

GetMetadataRefreshResponse

completed_at?: null | string

When the metadata refresh completed

GetMetadataRefreshResponse

refresh_id: string

The metadata refresh ID

GetMetadataRefreshResponse

started_at: string

When the metadata refresh started

GetMetadataRefreshResponse

status: GetMetadataRefreshResponseStatusEnum

The metadata refresh status

GetMetadataRefreshResponse

summary: MetadataRefreshSummary[]

The current metadata refresh summary. The summary continue to update until metadata refresh is completed

GetMetadataRefreshResponse