ae04055e499630f2f7f49bdf8c6927c1dcff3606
[vid.git] / vid-webpack-master / src / app / services / aaiService / responseInterfaces / getServicesResponseInterface.ts
1 export interface ServiceResponseInterface {
2   'service-id': string,
3   'service-description': string
4   'is-permitted': boolean
5 }
6
7 export interface GetServicesResponseInterface {
8   service: ServiceResponseInterface[];
9 }