/** * 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 { ChallengeResponse } from './ChallengeResponse'; /** * * @export * @interface GetChallenges */ export interface GetChallenges { /** * * @type {Array} * @memberof GetChallenges */ data?: Array; } /** * Check if a given object implements the GetChallenges interface. */ export declare function instanceOfGetChallenges(value: object): value is GetChallenges; export declare function GetChallengesFromJSON(json: any): GetChallenges; export declare function GetChallengesFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetChallenges; export declare function GetChallengesToJSON(value?: GetChallenges | null): any;