/**
 * 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.
 */
/**
 * Information required to upload a feed document\'s contents.
 * @export
 * @interface CreateFeedDocumentResponse
 */
export interface CreateFeedDocumentResponse {
    /**
     * The identifier of the feed document.
     * @type {string}
     * @memberof CreateFeedDocumentResponse
     */
    'feedDocumentId': string;
    /**
     * The presigned URL for uploading the feed contents. This URL expires after 5 minutes.
     * @type {string}
     * @memberof CreateFeedDocumentResponse
     */
    'url': string;
}
