shopee-client
Version:
Shoppe Open API Client
19 lines (18 loc) • 367 B
TypeScript
export default interface AddItemImageResponse {
/**
* The identity of product item.
*/
item_id: number;
/**
* Image URLs for fail download.
*/
fail_image: string[];
/**
* Image URLs for item.
*/
images: string[];
/**
* The identifier for an API request for error tracking
*/
request_id: string;
}