/** * 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 FollowGate */ export interface FollowGate { /** * Must follow the given user ID to unlock * @type {number} * @memberof FollowGate */ followUserId: number; } /** * Check if a given object implements the FollowGate interface. */ export declare function instanceOfFollowGate(value: object): value is FollowGate; export declare function FollowGateFromJSON(json: any): FollowGate; export declare function FollowGateFromJSONTyped(json: any, ignoreDiscriminator: boolean): FollowGate; export declare function FollowGateToJSON(value?: FollowGate | null): any;