/** * 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 { Attestation } from './Attestation'; /** * * @export * @interface AttestationReponse */ export interface AttestationReponse { /** * * @type {Attestation} * @memberof AttestationReponse */ data?: Attestation; } /** * Check if a given object implements the AttestationReponse interface. */ export declare function instanceOfAttestationReponse(value: object): value is AttestationReponse; export declare function AttestationReponseFromJSON(json: any): AttestationReponse; export declare function AttestationReponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AttestationReponse; export declare function AttestationReponseToJSON(value?: AttestationReponse | null): any;