/** * 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 CreateRoleRequest */ export interface CreateRoleRequest { /** * * @type {string} * @memberof CreateRoleRequest */ name: string; /** * * @type {Array} * @memberof CreateRoleRequest */ permissionIds: Array; } /** * Check if a given object implements the CreateRoleRequest interface. */ export declare function instanceOfCreateRoleRequest(value: object): value is CreateRoleRequest; export declare function CreateRoleRequestFromJSON(json: any): CreateRoleRequest; export declare function CreateRoleRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateRoleRequest; export declare function CreateRoleRequestToJSON(json: any): CreateRoleRequest; export declare function CreateRoleRequestToJSONTyped(value?: CreateRoleRequest | null, ignoreDiscriminator?: boolean): any;