File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ export interface AuthParam {
2+ customernumber : string ;
3+ apikey : string ;
4+ apisessionid : string ;
5+ }
16export interface InfoDNSRecordsRequest {
27 action : string ;
38 param : InfoDNSRecordsParam ;
49}
510
6- export interface InfoDNSRecordsParam {
11+ export interface InfoDNSRecordsParam extends AuthParam {
712 domainname : string ;
8- customernumber : string ;
9- apikey : string ;
10- apisessionid : string ;
1113}
12-
1314export interface InfoDNSZoneRequest {
1415 action : string ;
1516 param : InfoDNSZoneParam ;
1617}
1718
18- export interface InfoDNSZoneParam {
19+ export interface InfoDNSZoneParam extends AuthParam {
1920 domainname : string ;
20- customernumber : string ;
21- apikey : string ;
22- apisessionid : string ;
2321}
2422
2523export interface LoginRequest {
Original file line number Diff line number Diff line change @@ -28,10 +28,10 @@ export interface InfoDNSZoneResponse {
2828 statuscode : number ;
2929 shortmessage : string ;
3030 longmessage : string ;
31- responsedata : InfoDNSZoneResponsedata ;
31+ responsedata : InfoDNSZoneResponseData ;
3232}
3333
34- export interface InfoDNSZoneResponsedata {
34+ export interface InfoDNSZoneResponseData {
3535 name : string ;
3636 ttl : string ;
3737 serial : string ;
@@ -43,14 +43,14 @@ export interface InfoDNSZoneResponsedata {
4343
4444export interface InfoDNSRecordsResponse extends ApiResponse {
4545 action : Actions . infoDnsRecords ;
46- responsedata : InfoDNSRecordsResponsedata ;
46+ responsedata : InfoDNSRecordsResponseData ;
4747}
4848
49- export interface InfoDNSRecordsResponsedata {
50- dnsrecords : Dnsrecord [ ] ;
49+ export interface InfoDNSRecordsResponseData {
50+ dnsrecords : DnsRecord [ ] ;
5151}
5252
53- export interface Dnsrecord {
53+ export interface DnsRecord {
5454 id : string ;
5555 hostname : string ;
5656 type : string ;
You can’t perform that action at this time.
0 commit comments