/** * 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 SupporterReference */ export interface SupporterReference { /** * * @type {string} * @memberof SupporterReference */ userId: string; } /** * Check if a given object implements the SupporterReference interface. */ export declare function instanceOfSupporterReference(value: object): value is SupporterReference; export declare function SupporterReferenceFromJSON(json: any): SupporterReference; export declare function SupporterReferenceFromJSONTyped(json: any, ignoreDiscriminator: boolean): SupporterReference; export declare function SupporterReferenceToJSON(value?: SupporterReference | null): any;