/** * 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 CreatePlaylistResponse */ export interface CreatePlaylistResponse { /** * The blockchain transaction hash * @type {string} * @memberof CreatePlaylistResponse */ transactionHash?: string; /** * The blockchain block hash * @type {string} * @memberof CreatePlaylistResponse */ blockHash?: string; /** * The blockchain block number/height * @type {number} * @memberof CreatePlaylistResponse */ blockNumber?: number; /** * The ID of the created playlist * @type {string} * @memberof CreatePlaylistResponse */ playlistId?: string; } /** * Check if a given object implements the CreatePlaylistResponse interface. */ export declare function instanceOfCreatePlaylistResponse(value: object): value is CreatePlaylistResponse; export declare function CreatePlaylistResponseFromJSON(json: any): CreatePlaylistResponse; export declare function CreatePlaylistResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreatePlaylistResponse; export declare function CreatePlaylistResponseToJSON(value?: CreatePlaylistResponse | null): any;