/** * 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 ExtendedTokenGate */ export interface ExtendedTokenGate { /** * The mint of the token needed to unlock * @type {string} * @memberof ExtendedTokenGate */ tokenMint: string; /** * The amount of the token needed to unlock * @type {number} * @memberof ExtendedTokenGate */ tokenAmount: number; } /** * Check if a given object implements the ExtendedTokenGate interface. */ export declare function instanceOfExtendedTokenGate(value: object): value is ExtendedTokenGate; export declare function ExtendedTokenGateFromJSON(json: any): ExtendedTokenGate; export declare function ExtendedTokenGateFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExtendedTokenGate; export declare function ExtendedTokenGateToJSON(value?: ExtendedTokenGate | null): any;