/** * 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 { ExtendedUsdcGate } from './ExtendedUsdcGate'; /** * * @export * @interface ExtendedPurchaseGate */ export interface ExtendedPurchaseGate { /** * Must pay the total price and split to the given addresses to unlock * @type {ExtendedUsdcGate} * @memberof ExtendedPurchaseGate */ usdcPurchase: ExtendedUsdcGate; } /** * Check if a given object implements the ExtendedPurchaseGate interface. */ export declare function instanceOfExtendedPurchaseGate(value: object): value is ExtendedPurchaseGate; export declare function ExtendedPurchaseGateFromJSON(json: any): ExtendedPurchaseGate; export declare function ExtendedPurchaseGateFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExtendedPurchaseGate; export declare function ExtendedPurchaseGateToJSON(value?: ExtendedPurchaseGate | null): any;