/** * 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. */ /** * * @export * @interface CreateTrackResponse */ export interface CreateTrackResponse { /** * The blockchain transaction hash * @type {string} * @memberof CreateTrackResponse */ transactionHash?: string; /** * The blockchain block hash * @type {string} * @memberof CreateTrackResponse */ blockHash?: string; /** * The blockchain block number/height * @type {number} * @memberof CreateTrackResponse */ blockNumber?: number; /** * The ID of the created track * @type {string} * @memberof CreateTrackResponse */ trackId?: string; } /** * Check if a given object implements the CreateTrackResponse interface. */ export declare function instanceOfCreateTrackResponse(value: object): value is CreateTrackResponse; export declare function CreateTrackResponseFromJSON(json: any): CreateTrackResponse; export declare function CreateTrackResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateTrackResponse; export declare function CreateTrackResponseToJSON(value?: CreateTrackResponse | null): any;