/** * 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 { AuthorizedApp } from './AuthorizedApp'; /** * * @export * @interface AuthorizedApps */ export interface AuthorizedApps { /** * * @type {Array} * @memberof AuthorizedApps */ data?: Array; } /** * Check if a given object implements the AuthorizedApps interface. */ export declare function instanceOfAuthorizedApps(value: object): value is AuthorizedApps; export declare function AuthorizedAppsFromJSON(json: any): AuthorizedApps; export declare function AuthorizedAppsFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthorizedApps; export declare function AuthorizedAppsToJSON(value?: AuthorizedApps | null): any;