/** * 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 { ExtendedTokenGate } from './ExtendedTokenGate'; /** * * @export * @interface TokenGate */ export interface TokenGate { /** * Must hold an NFT of the given collection to unlock * @type {ExtendedTokenGate} * @memberof TokenGate */ tokenGate: ExtendedTokenGate; } /** * Check if a given object implements the TokenGate interface. */ export declare function instanceOfTokenGate(value: object): value is TokenGate; export declare function TokenGateFromJSON(json: any): TokenGate; export declare function TokenGateFromJSONTyped(json: any, ignoreDiscriminator: boolean): TokenGate; export declare function TokenGateToJSON(value?: TokenGate | null): any;