export const ChargingPriceData = { SEASON: { SPRING: { index: 0, text: 'SPRING', description: '봄', }, SUMMER: { index: 1, text: 'SUMMER', description: '여름', }, FALL: { index: 2, text: 'FALL', description: '가을', }, WINTER: { index: 3, text: 'WINTER', description: '겨울', }, }, REGION: { ALL: { index: -1, text: 'ALL', description: '구분 없음', }, NORMAL: { index: 0, text: 'NORMAL', description: '내륙', }, GANGNAM: { index: 1168, text: 'GANGNAM', description: '강남', }, JEJU: { index: 5000, text: 'JEJU', description: '제주', }, }, VOLTAGE: { ALL: { index: -1, text: 'ALL', description: '전체', }, NONE: { index: 0, text: 'NONE', description: '없음', }, LOW: { index: 1, text: 'LOW', description: '저압', }, HIGH: { index: 3, // 충전국밥 DB와 통일 text: 'HIGH', description: '고압', }, }, FACILITY: { ALL: { index: -1, text: 'ALL', description: '전체', }, NORMAL: { index: 0, text: 'NORMAL', description: '일반', }, APARTMENT: { index: 1, text: 'APARTMENT', description: '공동주택', }, COMMERCIAL_EMART: { index: 2, text: 'COMMERCIAL_EMART', description: '상업시설,이마트', }, KNOWLEDGE_INDUSTRY: { index: 3, text: 'KNOWLEDGE_INDUSTRY', description: '지식산업센터', }, COMPANY: { index: 4, text: 'COMPANY', description: '회사시설', }, }, STRESS: { NONE: { index: 0, text: 'NONE', description: '부하 구분 없음', }, LOW: { index: 1, text: 'LOW', description: '경부하', }, MIDDLE: { index: 2, text: 'MIDDLE', description: '중간부하', }, HIGH: { index: 3, text: 'HIGH', description: '최대부하', }, }, } as const; Object.freeze(ChargingPriceData);