UNPKG

helixzypher-api-client

Version:

Orval generated API client for heliZypher

26 lines (25 loc) 790 B
/** * Generated by orval v7.9.0 🍺 * Do not edit manually. * HELIXZ helixZypher APIs * HelixZypher is a custom-built authentication server by Helixz Solutions, developed using Spring Boot with JWT and OAuth2 support. It provides a secure, scalable, and flexible foundation for managing user authentication and authorization across modern applications and microservices. * OpenAPI spec version: 1.0.0 */ export interface RoleSearchRequest { /** * @minimum 1 * @maximum 100000 */ pageNumber?: number; /** * @minimum 5 * @maximum 250 */ pageSize?: number; /** @pattern asc|desc */ sortDirection?: string; keyword?: string; status?: string; /** @pattern lastModifiedDate|name|description */ sortProperty?: string; }