/** * 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 { SalesJsonContent } from './SalesJsonContent'; /** * * @export * @interface SalesJsonResponse */ export interface SalesJsonResponse { /** * * @type {SalesJsonContent} * @memberof SalesJsonResponse */ data?: SalesJsonContent; } /** * Check if a given object implements the SalesJsonResponse interface. */ export declare function instanceOfSalesJsonResponse(value: object): value is SalesJsonResponse; export declare function SalesJsonResponseFromJSON(json: any): SalesJsonResponse; export declare function SalesJsonResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SalesJsonResponse; export declare function SalesJsonResponseToJSON(value?: SalesJsonResponse | null): any;