/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Minimal user info embedded in action request and response objects. * @export * @interface AdminActionRequestUser */ export interface AdminActionRequestUser { /** * * @type {string} * @memberof AdminActionRequestUser */ id: string; /** * * @type {string} * @memberof AdminActionRequestUser */ email: string; /** * Display name, if available. * @type {string} * @memberof AdminActionRequestUser */ name?: string; } export declare function AdminActionRequestUserFromJSON(json: any): AdminActionRequestUser; export declare function AdminActionRequestUserFromJSONTyped(json: any, ignoreDiscriminator: boolean): AdminActionRequestUser; export declare function AdminActionRequestUserToJSON(value?: AdminActionRequestUser | null): any;