/** * My API * API documentation for my Laravel app * * 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. */ /** * * @export * @interface UpdateRoleRequest */ export interface UpdateRoleRequest { /** * * @type {string} * @memberof UpdateRoleRequest */ name: string; /** * * @type {Array} * @memberof UpdateRoleRequest */ permissionIds: Array; } /** * Check if a given object implements the UpdateRoleRequest interface. */ export declare function instanceOfUpdateRoleRequest(value: object): value is UpdateRoleRequest; export declare function UpdateRoleRequestFromJSON(json: any): UpdateRoleRequest; export declare function UpdateRoleRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateRoleRequest; export declare function UpdateRoleRequestToJSON(json: any): UpdateRoleRequest; export declare function UpdateRoleRequestToJSONTyped(value?: UpdateRoleRequest | null, ignoreDiscriminator?: boolean): any;