/** * 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 AuthorizedApp */ export interface AuthorizedApp { /** * * @type {string} * @memberof AuthorizedApp */ address: string; /** * * @type {string} * @memberof AuthorizedApp */ name: string; /** * * @type {string} * @memberof AuthorizedApp */ description?: string; /** * * @type {string} * @memberof AuthorizedApp */ imageUrl?: string; /** * * @type {string} * @memberof AuthorizedApp */ grantorUserId: string; /** * * @type {string} * @memberof AuthorizedApp */ grantCreatedAt: string; /** * * @type {string} * @memberof AuthorizedApp */ grantUpdatedAt: string; } /** * Check if a given object implements the AuthorizedApp interface. */ export declare function instanceOfAuthorizedApp(value: object): value is AuthorizedApp; export declare function AuthorizedAppFromJSON(json: any): AuthorizedApp; export declare function AuthorizedAppFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthorizedApp; export declare function AuthorizedAppToJSON(value?: AuthorizedApp | null): any;