-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathtypes.go
More file actions
1168 lines (992 loc) · 33 KB
/
types.go
File metadata and controls
1168 lines (992 loc) · 33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package namesilo
import "encoding/xml"
// Request Base request representation.
type Request struct {
Operation string `xml:"operation"`
IP string `xml:"ip"`
}
// Reply Base reply representation.
type Reply struct {
Code string `xml:"code"`
Detail string `xml:"detail"`
}
func (r Reply) getCode() string {
return r.Code
}
func (r Reply) getDetail() string {
return r.Detail
}
// Operation was generated 2019-03-20 19:35:05.
type Operation struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply Reply `xml:"reply"`
}
// AddAccountFunds was generated 2019-03-20 19:35:05.
type AddAccountFunds struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply AddAccountFundsReply `xml:"reply"`
}
// AddAccountFundsReply A reply representation.
type AddAccountFundsReply struct {
Reply
NewBalance string `xml:"new_balance"`
}
// AddAutoRenewal was generated 2019-03-20 19:35:05.
type AddAutoRenewal struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply Reply `xml:"reply"`
}
// AddPrivacy was generated 2019-03-20 19:35:05.
type AddPrivacy struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply Reply `xml:"reply"`
}
// AddRegisteredNameServer was generated 2019-03-20 19:35:05.
type AddRegisteredNameServer struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply Reply `xml:"reply"`
}
// BidAuction was generated 2025-08-31 11:37:00.
type BidAuction struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply BidAuctionReply `xml:"reply"`
}
// BidAuctionReply A reply representation.
type BidAuctionReply struct {
Reply
Body BidReply `xml:"body"`
}
// BuyNowAuction was generated 2025-08-31 11:37:00.
type BuyNowAuction struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply BuyNowAuctionReply `xml:"reply"`
}
// BuyNowAuctionReply A reply representation.
type BuyNowAuctionReply struct {
Reply
Body BidReply `xml:"body"`
}
// BidderReply A reply representation.
type BidderReply struct {
UserID string `xml:"userId"`
UserMaxBid string `xml:"userMaxBid"`
ProxyMaxBid string `xml:"proxyMaxBid"`
Balance string `xml:"balance"`
CreditLimit string `xml:"creditLimit"`
OutstandingCommitments string `xml:"outstandingCommitments"`
RenewPriceThisDomain string `xml:"renewPriceThisDomain"`
UserInWatchlist string `xml:"userInWatchlist"`
}
// BidReply A reply representation.
type BidReply struct {
AuctionID string `xml:"auctionId"`
UserID string `xml:"userId"`
Bid string `xml:"bid"`
ProxyBid string `xml:"proxyBid"`
Errors string `xml:"errors"`
}
// ChangeNameServers was generated 2019-03-20 19:35:05.
type ChangeNameServers struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply Reply `xml:"reply"`
}
// CheckRegisterAvailability was generated 2019-03-20 19:35:05.
type CheckRegisterAvailability struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply CheckRegisterAvailabilityReply `xml:"reply"`
}
// CheckRegisterAvailabilityReply A reply representation.
type CheckRegisterAvailabilityReply struct {
Reply
Available struct {
Domain []struct {
Name string `xml:",chardata"`
Price string `xml:"price,attr"`
Premium string `xml:"premium,attr"`
Duration string `xml:"duration,attr"`
} `xml:"domain"`
} `xml:"available"`
Unavailable struct {
Domain string `xml:"domain"`
} `xml:"unavailable"`
Invalid struct {
Domain string `xml:"domain"`
} `xml:"invalid"`
}
// CheckTransferAvailability was generated 2019-03-20 19:35:05.
type CheckTransferAvailability struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply CheckTransferAvailabilityReply `xml:"reply"`
}
// CheckTransferAvailabilityReply A reply representation.
type CheckTransferAvailabilityReply struct {
Reply
Available struct {
Domain []struct {
Name string `xml:",chardata"`
Price string `xml:"price,attr"`
Premium string `xml:"premium,attr,omitempty"`
} `xml:"domain"`
} `xml:"available"`
Unavailable struct {
Domain []struct {
Name string `xml:",chardata"`
Reason string `xml:"reason,attr"`
} `xml:"domain"`
} `xml:"unavailable"`
}
// CheckTransferStatus was generated 2019-03-20 19:35:05.
type CheckTransferStatus struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply CheckTransferStatusReply `xml:"reply"`
}
// CheckTransferStatusReply A reply representation.
type CheckTransferStatusReply struct {
Reply
Date string `xml:"date"`
Status string `xml:"status"`
Message string `xml:"message"`
}
// ConfigureEmailForward was generated 2019-03-20 19:35:05.
type ConfigureEmailForward struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply ConfigureEmailForwardReply `xml:"reply"`
}
// ConfigureEmailForwardReply A reply representation.
type ConfigureEmailForwardReply struct {
Reply
Message string `xml:"message"`
}
// ContactAdd was generated 2019-03-20 19:35:05.
type ContactAdd struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply ContactAddReply `xml:"reply"`
}
// ContactAddReply A reply representation.
type ContactAddReply struct {
Reply
ContactID string `xml:"contact_id"`
}
// ContactDomainAssociate was generated 2019-03-20 19:35:05.
type ContactDomainAssociate struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply Reply `xml:"reply"`
}
// ContactList was generated 2019-03-20 19:35:05.
type ContactList struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply ContactListReply `xml:"reply"`
}
// ContactListReply A reply representation.
type ContactListReply struct {
Reply
Contact []Contact `xml:"contact"`
}
// Contact A contact representation.
type Contact struct {
ContactID string `xml:"contact_id"`
DefaultProfile string `xml:"default_profile"`
Nickname string `xml:"nickname"`
Company string `xml:"company"`
FirstName string `xml:"first_name"`
LastName string `xml:"last_name"`
Address string `xml:"address"`
Address2 string `xml:"address2"`
City string `xml:"city"`
State string `xml:"state"`
Zip string `xml:"zip"`
Country string `xml:"country"`
Email string `xml:"email"`
Phone string `xml:"phone"`
Fax string `xml:"fax"`
Usnc string `xml:"usnc"`
Usap string `xml:"usap"`
Calf string `xml:"calf"`
Caln string `xml:"caln"`
Caag string `xml:"caag"`
Cawd string `xml:"cawd"`
}
// ContactUpdate was generated 2019-03-20 19:35:05.
type ContactUpdate struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply Reply `xml:"reply"`
}
// ContactDelete was generated 2019-03-20 19:35:05.
type ContactDelete struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply Reply `xml:"reply"`
}
// CountExpiringDomains was generated 2025-08-30 10:52:05.
type CountExpiringDomains struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply CountExpiringDomainsReply `xml:"reply"`
}
// CountExpiringDomainsReply A reply representation.
type CountExpiringDomainsReply struct {
Reply
Body string `xml:"body"`
}
// DeleteEmailForward was generated 2019-03-20 19:35:05.
type DeleteEmailForward struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply DeleteEmailForwardReply `xml:"reply"`
}
// DeleteEmailForwardReply A reply representation.
type DeleteEmailForwardReply struct {
Reply
Message string `xml:"message"`
}
// DeleteRegisteredNameServer was generated 2019-03-20 19:35:05.
type DeleteRegisteredNameServer struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply Reply `xml:"reply"`
}
// DnsAddRecord was generated 2019-03-20 19:35:05.
type DnsAddRecord struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply DnsAddRecordReply `xml:"reply"`
}
// DnsAddRecordReply A reply representation.
type DnsAddRecordReply struct {
Reply
RecordID string `xml:"record_id"`
}
// DnsDeleteRecord was generated 2019-03-20 19:35:05.
type DnsDeleteRecord struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply Reply `xml:"reply"`
}
// DnsListRecords was generated 2019-03-20 19:35:05.
type DnsListRecords struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply DnsListRecordsReply `xml:"reply"`
}
// DnsListRecordsReply A reply representation.
type DnsListRecordsReply struct {
Reply
ResourceRecord []ResourceRecord `xml:"resource_record"`
}
// ResourceRecord A Resource Record representation.
type ResourceRecord struct {
RecordID string `xml:"record_id"`
Type string `xml:"type"`
Host string `xml:"host"`
Value string `xml:"value"`
TTL string `xml:"ttl"`
Distance string `xml:"distance"`
}
// DnsSecAddRecord was generated 2019-03-20 19:35:05.
type DnsSecAddRecord struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply Reply `xml:"reply"`
}
// DnsSecDeleteRecord was generated 2019-03-20 19:35:05.
type DnsSecDeleteRecord struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply Reply `xml:"reply"`
}
// DnsSecListRecords was generated 2019-03-20 19:35:05.
type DnsSecListRecords struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply DnsSecListRecordsReply `xml:"reply"`
}
// DnsSecListRecordsReply A reply representation.
type DnsSecListRecordsReply struct {
Reply
DsRecord []DsRecord `xml:"ds_record"`
}
// DsRecord A DsRecord representation.
type DsRecord struct {
Digest string `xml:"digest"`
DigestType string `xml:"digest_type"`
Algorithm string `xml:"algorithm"`
KeyTag string `xml:"key_tag"`
}
// DnsUpdateRecord was generated 2019-03-20 19:35:05.
type DnsUpdateRecord struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply DnsUpdateRecordReply `xml:"reply"`
}
// DnsUpdateRecordReply A reply representation.
type DnsUpdateRecordReply struct {
Reply
RecordID string `xml:"record_id"`
}
// DomainForwardSubDomainDelete was generated 2019-03-20 19:35:05.
type DomainForwardSubDomainDelete struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply Reply `xml:"reply"`
}
// DomainForwardSubDomain was generated 2019-03-20 19:35:05.
type DomainForwardSubDomain struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply DomainForwardSubDomainReply `xml:"reply"`
}
// DomainForwardSubDomainReply A reply representation.
type DomainForwardSubDomainReply struct {
Reply
Message string `xml:"message"`
}
// DomainForward was generated 2019-03-20 19:35:05.
type DomainForward struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply Reply `xml:"reply"`
}
// DomainLock was generated 2019-03-20 19:35:05.
type DomainLock struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply Reply `xml:"reply"`
}
// DomainPush was generated 2025-09-01 17:41:00.
type DomainPush struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply DomainPushReply `xml:"reply"`
}
// DomainPushReply A reply representation.
type DomainPushReply struct {
Reply
Body struct {
RecipientLogin string `xml:"recipientLogin"`
DomainsPushStatuses struct {
Entry []struct {
Domain string `xml:"domain"`
Success string `xml:"success"`
Error string `xml:"error"`
} `xml:"entry"`
} `xml:"domainsPushStatuses"`
} `xml:"body"`
}
// DomainUnlock was generated 2019-03-20 19:35:05.
type DomainUnlock struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply Reply `xml:"reply"`
}
// EmailVerification was generated 2019-03-20 19:35:05.
type EmailVerification struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply EmailVerificationReply `xml:"reply"`
}
// EmailVerificationReply A reply representation.
type EmailVerificationReply struct {
Reply
Message string `xml:"message"`
}
// GetAccountBalance was generated 2019-03-20 19:35:05.
type GetAccountBalance struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply GetAccountBalanceReply `xml:"reply"`
}
// GetAccountBalanceReply A reply representation.
type GetAccountBalanceReply struct {
Reply
Balance string `xml:"balance"`
}
// GetDomainInfo was generated 2019-03-20 19:35:05.
type GetDomainInfo struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply GetDomainInfoReply `xml:"reply"`
}
// GetDomainInfoReply A reply representation.
type GetDomainInfoReply struct {
Reply
Created string `xml:"created"`
Expires string `xml:"expires"`
Status string `xml:"status"`
Locked string `xml:"locked"`
Private string `xml:"private"`
AutoRenew string `xml:"auto_renew"`
TrafficType string `xml:"traffic_type"`
EmailVerificationRequired string `xml:"email_verification_required"`
Portfolio string `xml:"portfolio"`
ForwardURL string `xml:"forward_url"`
ForwardType string `xml:"forward_type"`
Nameservers []Nameserver `xml:"nameservers>nameserver"`
ContactIDs ContactIDs `xml:"contact_ids"`
}
// Nameserver A Nameserver representation.
type Nameserver struct {
Name string `xml:",chardata"`
Position string `xml:"position,attr"`
}
// ContactIDs A Contact IDs representation.
type ContactIDs struct {
Registrant string `xml:"registrant"`
Administrative string `xml:"administrative"`
Technical string `xml:"technical"`
Billing string `xml:"billing"`
}
// GetPrices was generated 2019-03-20 19:35:05.
type GetPrices struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply GetPricesReply `xml:"reply"`
}
// GetPricesReply A reply representation.
type GetPricesReply struct {
Reply
Com ComNet `xml:"com"`
Net ComNet `xml:"net"`
}
// ComNet A Com/Net representation.
type ComNet struct {
Registration string `xml:"registration"`
Transfer string `xml:"transfer"`
Renew string `xml:"renew"`
}
// ListAuctions was generated 2025-08-31 11:37:00.
type ListAuctions struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply ListAuctionsReply `xml:"reply"`
}
// ListAuctionsReply A reply representation.
type ListAuctionsReply struct {
Reply
Body struct {
Entry []struct {
ID string `xml:"id"`
LeaderUserID string `xml:"leaderUserId"`
OwnerUserID string `xml:"ownerUserId"`
DomainID string `xml:"domainId"`
Domain string `xml:"domain"`
StatusID string `xml:"statusId"`
TypeID string `xml:"typeId"`
OpeningBid string `xml:"openingBid"`
CurrentBid string `xml:"currentBid"`
MaxBid string `xml:"maxBid"`
HasBids string `xml:"hasBids"`
BidsQuantity string `xml:"bidsQuantity"`
DomainCreatedOn string `xml:"domainCreatedOn"`
AuctionEndsOn string `xml:"auctionEndsOn"`
AuctionEndsOnUtc string `xml:"auctionEndsOnUtc"`
URL string `xml:"url"`
} `xml:"entry"`
} `xml:"body"`
}
// ListDomains was generated 2019-03-20 19:35:05.
type ListDomains struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply ListDomainsReply `xml:"reply"`
}
// ListDomainsReply A reply representation.
type ListDomainsReply struct {
Reply
Domains struct {
Domain []struct {
Name string `xml:",chardata"`
Created string `xml:"created,attr"`
Expires string `xml:"expires,attr"`
MaxBid string `xml:"maxBid,attr,omitempty"`
} `xml:"domain"`
} `xml:"domains"`
Pager struct {
Total string `xml:"total"`
PageSize string `xml:"pageSize"`
Page string `xml:"page"`
} `xml:"pager"`
}
// ListEmailForwards was generated 2019-03-20 19:35:05.
type ListEmailForwards struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply ListEmailForwardsReply `xml:"reply"`
}
// ListEmailForwardsReply A reply representation.
type ListEmailForwardsReply struct {
Reply
Addresses []Address `xml:"addresses"`
}
// Address An Address representation.
type Address struct {
Email string `xml:"email"`
ForwardsTo []string `xml:"forwards_to"`
}
// ListExpiringDomains was generated 2025-08-30 10:51:05.
type ListExpiringDomains struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply ListExpiringDomainsReply `xml:"reply"`
}
// ListExpiringDomainsReply A reply representation.
type ListExpiringDomainsReply struct {
Reply
Body struct {
Entry []struct {
ID string `xml:"id"`
Domain string `xml:"domain"`
CreatedOn string `xml:"createdOn"`
ExpiresOn string `xml:"expiresOn"`
Status string `xml:"status"`
NsServers string `xml:"nsServers"`
} `xml:"entry"`
} `xml:"body"`
}
// ListOrders was generated 2019-03-20 19:35:05.
type ListOrders struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply ListOrdersReply `xml:"reply"`
}
// ListOrdersReply A reply representation.
type ListOrdersReply struct {
Reply
Order []Order `xml:"order"`
}
// Order An Order representation.
type Order struct {
OrderNumber string `xml:"order_number"`
OrderDate string `xml:"order_date"`
Method string `xml:"method"`
Total string `xml:"total"`
}
// ListRegisteredNameServers was generated 2019-03-20 19:35:05.
type ListRegisteredNameServers struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply ListRegisteredNameServersReply `xml:"reply"`
}
// ListRegisteredNameServersReply A reply representation.
type ListRegisteredNameServersReply struct {
Reply
Hosts []Host `xml:"hosts"`
}
// Host A Host representation.
type Host struct {
Host string `xml:"host"`
IP []string `xml:"ip"`
}
// MarketplaceActiveSalesOverview was generated 2019-03-20 19:35:05.
type MarketplaceActiveSalesOverview struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply MarketplaceActiveSalesOverviewReply `xml:"reply"`
}
// MarketplaceActiveSalesOverviewReply A reply representation.
type MarketplaceActiveSalesOverviewReply struct {
Reply
SaleDetails []SaleDetail `xml:"sale_details"`
}
// SaleDetail A Sale Detail representation.
type SaleDetail struct {
Domain string `xml:"domain"`
Status string `xml:"status"`
Reserve string `xml:"reserve"`
BuyNow string `xml:"buy_now"`
Portfolio string `xml:"portfolio"`
SaleType string `xml:"sale_type"`
PayPlanOffered string `xml:"pay_plan_offered"`
EndDate string `xml:"end_date"`
AutoExtendDays string `xml:"auto_extend_days"`
TimeRemaining string `xml:"time_remaining"`
Private string `xml:"private"`
ActiveBidOrOffer string `xml:"active_bid_or_offer"`
}
// MarketplaceAddOrModifySale was generated 2019-03-20 19:35:05.
type MarketplaceAddOrModifySale struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply MarketplaceAddOrModifySaleReply `xml:"reply"`
}
// MarketplaceAddOrModifySaleReply A reply representation.
type MarketplaceAddOrModifySaleReply struct {
Reply
Message string `xml:"message"`
}
// MarketplaceLandingPageUpdate was generated 2019-03-20 19:35:05.
type MarketplaceLandingPageUpdate struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply Reply `xml:"reply"`
}
// ModifyRegisteredNameServer was generated 2019-03-20 19:35:05.
type ModifyRegisteredNameServer struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply Reply `xml:"reply"`
}
// OrderDetails was generated 2019-03-20 19:35:05.
type OrderDetails struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply OrderDetailsReply `xml:"reply"`
}
// OrderDetailsReply A reply representation.
type OrderDetailsReply struct {
Reply
OrderNumber string `xml:"order_number"`
OrderDate string `xml:"order_date"`
Method string `xml:"method"`
Total string `xml:"total"`
OrderDetails []OrderDetail `xml:"order_details"`
}
// OrderDetail An Order Detail representation.
type OrderDetail struct {
Description string `xml:"description"`
YearsQty string `xml:"years_qty"`
Price string `xml:"price"`
Subtotal string `xml:"subtotal"`
Status string `xml:"status"`
CreditedDate string `xml:"credited_date,omitempty"`
CreditedAmount string `xml:"credited_amount,omitempty"`
}
// PortfolioAdd was generated 2019-03-20 19:35:05.
type PortfolioAdd struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply Reply `xml:"reply"`
}
// PortfolioDelete was generated 2019-03-20 19:35:05.
type PortfolioDelete struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply Reply `xml:"reply"`
}
// PortfolioDomainAssociate was generated 2019-03-20 19:35:05.
type PortfolioDomainAssociate struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply PortfolioDomainAssociateReply `xml:"reply"`
}
// PortfolioDomainAssociateReply A reply representation.
type PortfolioDomainAssociateReply struct {
Reply
Message string `xml:"message"`
}
// PortfolioList was generated 2019-03-20 19:35:05.
type PortfolioList struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply PortfolioListReply `xml:"reply"`
}
// PortfolioListReply A reply representation.
type PortfolioListReply struct {
Reply
Portfolios Portfolios `xml:"portfolios"`
}
// Portfolios A Portfolios representation.
type Portfolios struct {
Name []string `xml:"name"`
}
// RegisterDomainDrop was generated 2019-03-20 19:35:05.
type RegisterDomainDrop struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply RegisterDomainDropReply `xml:"reply"`
}
// RegisterDomainDropReply A reply representation.
type RegisterDomainDropReply struct {
Reply
Message string `xml:"message"`
Domain string `xml:"domain"`
OrderAmount string `xml:"order_amount"`
}
// RegisterDomain was generated 2019-03-20 19:35:05.
type RegisterDomain struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply RegisterDomainReply `xml:"reply"`
}
// RegisterDomainReply A reply representation.
type RegisterDomainReply struct {
Reply
Message string `xml:"message"`
Domain string `xml:"domain"`
OrderAmount string `xml:"order_amount"`
Claims *RegisterDomainClaim `xml:"claims,omitempty"`
}
// RegisterDomainClaim A reply representation.
type RegisterDomainClaim struct {
ClaimCode string `xml:"claim_code"`
NoticeID string `xml:"notice_id"`
NotAfter string `xml:"not_after"`
AcceptedDate string `xml:"accepted_date"`
Info RegisterDomainClaimInfo `xml:"info"`
}
// RegisterDomainClaimInfo A reply representation.
type RegisterDomainClaimInfo struct {
MarkName string `xml:"markName"`
Holder RegisterDomainClaimInfoHolder `xml:"holder"`
Contact RegisterDomainClaimInfoContact `xml:"contact"`
JurDesc string `xml:"jurDesc"`
Classes string `xml:"classes"`
GoodsAndServices string `xml:"goodsAndServices"`
Jurisdiction string `xml:"jurisdiction"`
}
// RegisterDomainClaimInfoHolder A reply representation.
type RegisterDomainClaimInfoHolder struct {
Name string `xml:"name"`
Org string `xml:"org"`
Street []string `xml:"street"`
City string `xml:"city"`
State string `xml:"state"`
Zip string `xml:"zip"`
Country string `xml:"country"`
Phone string `xml:"phone"`
Fax string `xml:"fax"`
Email string `xml:"email"`
}
type RegisterDomainClaimInfoContact struct {
Name string `xml:"name"`
Org string `xml:"org"`
Street []string `xml:"street"`
City string `xml:"city"`
State string `xml:"state"`
Zip string `xml:"zip"`
Country string `xml:"country"`
Phone string `xml:"phone"`
Fax string `xml:"fax"`
Email string `xml:"email"`
}
// RegistrantVerificationStatus was generated 2019-03-20 19:35:05.
type RegistrantVerificationStatus struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply RegistrantVerificationStatusReply `xml:"reply"`
}
// RegistrantVerificationStatusReply A reply representation.
type RegistrantVerificationStatusReply struct {
Reply
Emails []RegistrantEmail `xml:"email"`
}
// RegistrantEmail A email representation.
type RegistrantEmail struct {
EmailAddress string `xml:"email_address"`
Domains string `xml:"domains"`
Verified string `xml:"verified"`
}
// RemoveAutoRenewal was generated 2019-03-20 19:35:05.
type RemoveAutoRenewal struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply Reply `xml:"reply"`
}
// RemovePrivacy was generated 2019-03-20 19:35:05.
type RemovePrivacy struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply Reply `xml:"reply"`
}
// RenewDomain was generated 2019-03-20 19:35:05.
type RenewDomain struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply RenewDomainReply `xml:"reply"`
}
// RenewDomainReply A reply representation.
type RenewDomainReply struct {
Reply
Message string `xml:"message"`
Domain string `xml:"domain"`
OrderAmount string `xml:"order_amount"`
}
// RetrieveAuthCode was generated 2019-03-20 19:35:05.
type RetrieveAuthCode struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply Reply `xml:"reply"`
}
// TransferDomain was generated 2019-03-20 19:35:05.
type TransferDomain struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`
Reply TransferDomainReply `xml:"reply"`
}
// TransferDomainReply A reply representation.
type TransferDomainReply struct {
Reply
Message string `xml:"message"`
Domain string `xml:"domain"`
OrderAmount string `xml:"order_amount"`
}
// TransferUpdateChangeEPPCode was generated 2019-03-20 19:35:05.
type TransferUpdateChangeEPPCode struct {
XMLName xml.Name `xml:"namesilo"`
Request Request `xml:"request"`