FetchItemStatusResponse
import type { FetchItemStatusResponse } from "https://googleapis.deno.dev/v1/chromewebstore:v2.ts";Response message for FetchItemStatus.
interface FetchItemStatusResponse {
readonly itemId?: string;
readonly lastAsyncUploadState?:
| "UPLOAD_STATE_UNSPECIFIED"
| "SUCCEEDED"
| "IN_PROGRESS"
| "FAILED"
| "NOT_FOUND";
name?: string;
publicKey?: string;
readonly publishedItemRevisionStatus?: ItemRevisionStatus;
submittedItemRevisionStatus?: ItemRevisionStatus;
takenDown?: boolean;
warned?: boolean;
}§Properties
§
readonly lastAsyncUploadState?: "UPLOAD_STATE_UNSPECIFIED" | "SUCCEEDED" | "IN_PROGRESS" | "FAILED" | "NOT_FOUND"
[src]Output only. The state of the last async upload for an item. Only set when there has been an async upload for the item in the past 24 hours.
§
readonly publishedItemRevisionStatus?: ItemRevisionStatus
[src]Output only. Status of the current published revision of the item. Will be unset if the item is not published.
§
submittedItemRevisionStatus?: ItemRevisionStatus
[src]Status of the item revision submitted to be published. Will be unset if the item has not been submitted for publishing since the last successful publish.