/** * 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 UnclaimedIdResponse */ export interface UnclaimedIdResponse { /** * * @type {string} * @memberof UnclaimedIdResponse */ data?: string; } /** * Check if a given object implements the UnclaimedIdResponse interface. */ export declare function instanceOfUnclaimedIdResponse(value: object): value is UnclaimedIdResponse; export declare function UnclaimedIdResponseFromJSON(json: any): UnclaimedIdResponse; export declare function UnclaimedIdResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UnclaimedIdResponse; export declare function UnclaimedIdResponseToJSON(value?: UnclaimedIdResponse | null): any;