/** * 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 { ExtendedPurchaseGate } from './ExtendedPurchaseGate'; import { FollowGate } from './FollowGate'; import { TipGate } from './TipGate'; import { TokenGate } from './TokenGate'; /** * @type ExtendedAccessGate * * @export */ export type ExtendedAccessGate = ExtendedPurchaseGate | FollowGate | TipGate | TokenGate; export declare function ExtendedAccessGateFromJSON(json: any): ExtendedAccessGate; export declare function ExtendedAccessGateFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExtendedAccessGate; export declare function ExtendedAccessGateToJSON(value?: ExtendedAccessGate | null): any;