UNPKG

@sp-api-sdk/feeds-api-2021-06-30

Version:

The Selling Partner API for Feeds lets you upload data to Amazon on behalf of a selling partner.

57 lines (56 loc) 1.77 kB
/** * Selling Partner API for Feeds * The Selling Partner API for Feeds lets you upload data to Amazon on behalf of a selling partner. * * The version of the OpenAPI document: 2021-06-30 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Detailed information about the feed. */ export interface Feed { /** * The identifier for the feed. This identifier is unique only in combination with a seller ID. */ 'feedId': string; /** * The feed type. */ 'feedType': string; /** * A list of identifiers for the marketplaces that the feed is applied to. */ 'marketplaceIds'?: Array<string>; /** * The date and time when the feed was created, in ISO 8601 date time format. */ 'createdTime': string; /** * The processing status of the feed. */ 'processingStatus': FeedProcessingStatusEnum; /** * The date and time when feed processing started, in ISO 8601 date time format. */ 'processingStartTime'?: string; /** * The date and time when feed processing completed, in ISO 8601 date time format. */ 'processingEndTime'?: string; /** * The identifier for the feed document. This identifier is unique only in combination with a seller ID. */ 'resultFeedDocumentId'?: string; } export declare const FeedProcessingStatusEnum: { readonly Cancelled: "CANCELLED"; readonly Done: "DONE"; readonly Fatal: "FATAL"; readonly InProgress: "IN_PROGRESS"; readonly InQueue: "IN_QUEUE"; }; export type FeedProcessingStatusEnum = typeof FeedProcessingStatusEnum[keyof typeof FeedProcessingStatusEnum];