/** * 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 CreateUserResponse */ export interface CreateUserResponse { /** * The blockchain transaction hash * @type {string} * @memberof CreateUserResponse */ transactionHash?: string; /** * The blockchain block hash * @type {string} * @memberof CreateUserResponse */ blockHash?: string; /** * The blockchain block number/height * @type {number} * @memberof CreateUserResponse */ blockNumber?: number; /** * The ID of the created user * @type {string} * @memberof CreateUserResponse */ userId?: string; } /** * Check if a given object implements the CreateUserResponse interface. */ export declare function instanceOfCreateUserResponse(value: object): value is CreateUserResponse; export declare function CreateUserResponseFromJSON(json: any): CreateUserResponse; export declare function CreateUserResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateUserResponse; export declare function CreateUserResponseToJSON(value?: CreateUserResponse | null): any;