/** * 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 TipGate */ export interface TipGate { /** * Must tip the given user ID to unlock * @type {number} * @memberof TipGate */ tipUserId: number; } /** * Check if a given object implements the TipGate interface. */ export declare function instanceOfTipGate(value: object): value is TipGate; export declare function TipGateFromJSON(json: any): TipGate; export declare function TipGateFromJSONTyped(json: any, ignoreDiscriminator: boolean): TipGate; export declare function TipGateToJSON(value?: TipGate | null): any;