/** * Generated by orval v7.21.0 🍺 * Do not edit manually. * Negodata Api Server * OpenAPI spec version: 0.1.0 */ /** * negotiation.sessions.status μ½”λ“œκ°’. ν˜‘λ ₯사별 ν˜‘μƒ μ„Έμ…˜ μ§„ν–‰ μƒνƒœ. */ export type SessionStatus = typeof SessionStatus[keyof typeof SessionStatus]; // eslint-disable-next-line @typescript-eslint/no-redeclare export const SessionStatus = { CREATED: 1, IN_PROGRESS: 2, DONE: 3, NOT_PARTICIPATED: 4, REJECTED: 5, } as const;