/**
 * The Selling Partner API for Sellers
 * The [Selling Partner API for Sellers](https://developer-docs.amazon.com/sp-api/docs/sellers-api-v1-reference) (Sellers API) provides essential information about seller accounts, such as:  - The marketplaces a seller can list in - The default language and currency of a marketplace - Whether the seller has suspended listings  Refer to the [Sellers API reference](https://developer-docs.amazon.com/sp-api/docs/sellers-api-v1-reference) for details about this API\'s operations, data types, and schemas.
 *
 * The version of the OpenAPI document: v1
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 * Information that is specific to a seller in a marketplace.
 * @export
 * @interface Participation
 */
export interface Participation {
    /**
     * If `true`, the seller participates in the marketplace. Otherwise `false`.
     * @type {boolean}
     * @memberof Participation
     */
    'isParticipating': boolean;
    /**
     * Specifies if the seller has suspended listings. `true` if the seller Listing Status is set to Inactive, otherwise `false`.
     * @type {boolean}
     * @memberof Participation
     */
    'hasSuspendedListings': boolean;
}
