/** * 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 Access */ export interface Access { /** * * @type {boolean} * @memberof Access */ stream: boolean; /** * * @type {boolean} * @memberof Access */ download: boolean; } /** * Check if a given object implements the Access interface. */ export declare function instanceOfAccess(value: object): value is Access; export declare function AccessFromJSON(json: any): Access; export declare function AccessFromJSONTyped(json: any, ignoreDiscriminator: boolean): Access; export declare function AccessToJSON(value?: Access | null): any;