/** * 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 Attestation */ export interface Attestation { /** * * @type {string} * @memberof Attestation */ ownerWallet: string; /** * * @type {string} * @memberof Attestation */ attestation: string; } /** * Check if a given object implements the Attestation interface. */ export declare function instanceOfAttestation(value: object): value is Attestation; export declare function AttestationFromJSON(json: any): Attestation; export declare function AttestationFromJSONTyped(json: any, ignoreDiscriminator: boolean): Attestation; export declare function AttestationToJSON(value?: Attestation | null): any;