blob: dbfb695d0ddca96ceed6fe63e809b5ac1e83aee3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
export interface Subscription {
'service-type': string;
'is-permitted': boolean;
}
interface ServiceSubscriptions {
'service-subscription': Subscription[];
}
export interface GetSubDetailsResponse {
'service-subscriptions': ServiceSubscriptions;
}
|