35 lines
652 B
TypeScript
35 lines
652 B
TypeScript
/**
|
|
* GDS
|
|
*/
|
|
interface ReqGetGdsClientPolicyTotal {
|
|
policy_grp: string
|
|
device_nation?: string
|
|
client_lang: string
|
|
include_coverages?: boolean
|
|
|
|
// QA
|
|
runType?: string
|
|
qc?: string
|
|
}
|
|
|
|
interface DtoGetGdsClientPolicyTotal {
|
|
is_default: boolean
|
|
nation: string
|
|
regulation: string
|
|
timezone: string
|
|
utc_offset: number
|
|
lang: string
|
|
coverages: Array<string>
|
|
}
|
|
|
|
interface ResGetGdsClientPolicyTotal {
|
|
code?: number
|
|
message?: string
|
|
res_code?: number
|
|
res_message?: string
|
|
res_data?: DtoGetGdsClientPolicyTotal
|
|
req_data?: ReqGetGdsClientPolicyTotal
|
|
}
|
|
|
|
export type { ReqGetGdsClientPolicyTotal, ResGetGdsClientPolicyTotal }
|