/** * 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 AddManagerRequestBody */ export interface AddManagerRequestBody { /** * The user ID of the user to add as manager * @type {string} * @memberof AddManagerRequestBody */ managerUserId: string; } /** * Check if a given object implements the AddManagerRequestBody interface. */ export declare function instanceOfAddManagerRequestBody(value: object): value is AddManagerRequestBody; export declare function AddManagerRequestBodyFromJSON(json: any): AddManagerRequestBody; export declare function AddManagerRequestBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): AddManagerRequestBody; export declare function AddManagerRequestBodyToJSON(value?: AddManagerRequestBody | null): any;