blob: ae04055e499630f2f7f49bdf8c6927c1dcff3606 (
plain)
1
2
3
4
5
6
7
8
9
|
export interface ServiceResponseInterface {
'service-id': string,
'service-description': string
'is-permitted': boolean
}
export interface GetServicesResponseInterface {
service: ServiceResponseInterface[];
}
|