@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.
32 lines (31 loc) • 893 B
TypeScript
/**
* 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.
*/
import type { Feed } from './feed';
/**
* Response schema.
* @export
* @interface GetFeedsResponse
*/
export interface GetFeedsResponse {
/**
* A list of feeds.
* @type {Array<Feed>}
* @memberof GetFeedsResponse
*/
'feeds': Array<Feed>;
/**
* Returned when the number of results exceeds pageSize. To get the next page of results, call the getFeeds operation with this token as the only parameter.
* @type {string}
* @memberof GetFeedsResponse
*/
'nextToken'?: string;
}