/** * Audius API * * The version of the OpenAPI document: 1.0 * * * 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 { SaleJson } from './SaleJson'; /** * * @export * @interface SalesJsonContent */ export interface SalesJsonContent { /** * * @type {Array} * @memberof SalesJsonContent */ sales?: Array; } /** * Check if a given object implements the SalesJsonContent interface. */ export declare function instanceOfSalesJsonContent(value: object): value is SalesJsonContent; export declare function SalesJsonContentFromJSON(json: any): SalesJsonContent; export declare function SalesJsonContentFromJSONTyped(json: any, ignoreDiscriminator: boolean): SalesJsonContent; export declare function SalesJsonContentToJSON(value?: SalesJsonContent | null): any;