File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ import {
29
29
// https://open.assembly.go.kr/portal/data/service/selectAPIServicePage.do/O4K6HM0012064I15889
30
30
// 법률안 심사 및 처리(의안검색) 구현
31
31
32
- interface Bill {
32
+ interface ApiResponseParameter {
33
33
BILL_ID : string ; // 의안ID
34
34
BILL_NO : string ; // 의안번호
35
35
AGE : string ; // 대
@@ -56,7 +56,7 @@ interface Bill {
56
56
}
57
57
58
58
type Row = {
59
- [ k in keyof Bill ] : Bill [ k ] | null ;
59
+ [ k in keyof ApiResponseParameter ] : ApiResponseParameter [ k ] | null ;
60
60
} ;
61
61
62
62
type Argument = {
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ import {
27
27
직책명 ,
28
28
} from '../constant' ;
29
29
30
- interface Lawmaker {
30
+ interface ApiResponseParameter {
31
31
NAAS_CD : string ; // 국회의원코드
32
32
NAAS_NM : string ; // 국회의원명
33
33
NAAS_CH_NM : string ; // 국회의원한자명
@@ -55,7 +55,7 @@ interface Lawmaker {
55
55
}
56
56
57
57
type Row = {
58
- [ k in keyof Lawmaker ] : Lawmaker [ k ] | null ;
58
+ [ k in keyof ApiResponseParameter ] : ApiResponseParameter [ k ] | null ;
59
59
} ;
60
60
61
61
type Argument = {
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import {
13
13
import { callOpenApi } from '../functional' ;
14
14
import { PaginationType } from '../types/callOpenApi' ;
15
15
16
- interface NationalAssemblySchedule {
16
+ interface ApiResponseParameter {
17
17
SCH_KIND : string ; // 일정종류
18
18
SCH_CN : string ; // 일정내용
19
19
SCH_DT : string ; // 일자
@@ -27,7 +27,7 @@ interface NationalAssemblySchedule {
27
27
}
28
28
29
29
type Row = {
30
- [ k in keyof NationalAssemblySchedule ] : NationalAssemblySchedule [ k ] | null ;
30
+ [ k in keyof ApiResponseParameter ] : ApiResponseParameter [ k ] | null ;
31
31
} ;
32
32
33
33
type Argument = {
You can’t perform that action at this time.
0 commit comments