/** * Generated by orval v7.21.0 🍺 * Do not edit manually. * Negodata Api Server * OpenAPI spec version: 0.1.0 */ /** * users.status 코드값. */ export type UserStatus = typeof UserStatus[keyof typeof UserStatus]; // eslint-disable-next-line @typescript-eslint/no-redeclare export const UserStatus = { ACTIVE: 1, INACTIVE: 2, } as const;