@opusdns/api 0.319.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/src/helpers/constants.ts +424 -4430
- package/src/helpers/index.ts +3 -18
- package/src/helpers/keys.ts +2067 -42959
- package/src/helpers/requests.d.ts +752 -7216
- package/src/helpers/responses.d.ts +994 -14360
- package/src/helpers/schemas.d.ts +0 -6741
- package/src/openapi.yaml +4 -1
- package/src/schema.d.ts +1 -1
- package/src/helpers/schemas-arrays.d.ts +0 -1775
- package/src/types/constants.ts +0 -490
- package/src/types/index.ts +0 -10
- package/src/types/keys.ts +0 -2713
- package/src/types/types.ts +0 -643
|
@@ -1,1775 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Array type aliases for OpenAPI schemas
|
|
3
|
-
*
|
|
4
|
-
* This file contains TypeScript array type aliases for OpenAPI schema objects.
|
|
5
|
-
* Each array type represents a collection of the corresponding schema type.
|
|
6
|
-
* These types are used throughout the API for request/response arrays.
|
|
7
|
-
*
|
|
8
|
-
* @remarks
|
|
9
|
-
* - All array types follow the pattern: `TypeNameArray = TypeName[]`
|
|
10
|
-
* - Array types are automatically generated from OpenAPI schema references
|
|
11
|
-
* - Each type includes documentation from the original OpenAPI schema
|
|
12
|
-
* - These types ensure type safety when working with API arrays
|
|
13
|
-
*
|
|
14
|
-
* @example
|
|
15
|
-
* ```typescript
|
|
16
|
-
* // Using array types for API responses
|
|
17
|
-
* const domains: DomainArray = await api.getDomains();
|
|
18
|
-
* const contacts: ContactSchemaArray = await api.getContacts();
|
|
19
|
-
* ```
|
|
20
|
-
*
|
|
21
|
-
* This file is auto-generated from the OpenAPI specification.
|
|
22
|
-
* Do not edit manually.
|
|
23
|
-
*/
|
|
24
|
-
import { StatusTagType, ContactIncludeField, ZoneIncludeField, DomainIncludeField, DomainDnssecData, DomainDnssecDataCreate, JobStatus, OrganizationAttribute, OrganizationAttributeUpdate, IpRestriction, ReportType, ReportStatus, TagType, TldResponseShort, TmClaim, ClaimsNotice, ContactAttestVerificationReq, ContactVerificationStatus, AttributeCondition, DomainContactType, ContactCreateBulkInstance, ContactAttributeLinkDetail, StatusTag, TagEnriched, ContactAttributeDefinition, PostalAddressType, ContactConfigBase, Context, Conversation, DuplicateCommand, CommandError, DnsChange, DnsRecordCreate, DnsRecord, DnsRrsetCreate, DnsZoneCreateBulkInstance, DnsRecordPatchOp, DnsZonePatchRecordsBulkInstance, DnsRrsetPatchOp, DnsZonePatchRrsetsBulkInstance, DnsRrset, DnsZoneUpdateBulkInstance, DomainAvailabilityCheck, ContactHandle, Nameserver, DomainCreateBulkInstance, BrowserStatsBucket, GeoStatsBucket, TimeSeriesBucket, DomainForwardPatchOp, PlatformStatsBucket, HttpRedirectRequest, HttpRedirectList, ReferrerStatsBucket, StatusCodeStatsBucket, UserAgentStatsBucket, VisitsByKeyBucket, DomainForward, DeletePolicyType, SyncOperationType, DomainContact, DomainHost, DomainSearchSuggestionWithPrice, DomainStatus, DomainTransferBulkInstance, DomainClientStatus, DomainUpdateBulkInstance, VerificationRegistrantDetails, VerificationClaimType, VerificationDeadline, EmailForwardAliasCreate, EmailForwardLogEvent, EmailForwardAliasMetrics, EmailForwardAlias, EmailForward, PriceInfo, ValidationError, LaunchPhaseBase, LegalRequirementOperationType, LocalPresenceRequirementType, MemoryFact, Message, OrganizationAttribute2, User, OrganizationAttributeCreate, UserCreate, BillingTransaction, ContactAttributeSet, Contact, DnsZone, DomainForwardZone, Domain, EmailForwardLog, EmailForwardZone, EventResponse, Invoice, JobBatchMetadata, Job, ObjectLog, Organization, Parking, RequestHistory, Tag, UserPublic, ParkingCreateBulkInstance, ParkingDeleteBulkInstance, ParkingDisableBulkInstance, ParkingEnableBulkInstance, Period, Permission, PremiumAffectsType, PremiumPriceEntryRes, PremiumPricingAction, PublicReportRes, Relation, LegalRequirementBase, TldBase, TmClassDesc, TmContact, TmHolder, TmCourt, TmUdrp, PostTransferRequirements, UserAttributeBase, DomainAvailability } from './schemas.d';
|
|
25
|
-
|
|
26
|
-
/**
|
|
27
|
-
* StatusTagType
|
|
28
|
-
*
|
|
29
|
-
* @remarks
|
|
30
|
-
* Array type for StatusTagType objects. Used when the API returns a collection of StatusTagType instances.
|
|
31
|
-
*
|
|
32
|
-
* @example
|
|
33
|
-
* ```typescript
|
|
34
|
-
* const items: StatusTagTypeArray = await api.getStatusTagTypes();
|
|
35
|
-
* ```
|
|
36
|
-
*
|
|
37
|
-
* @see {@link StatusTagType} - The individual StatusTagType type definition
|
|
38
|
-
*/
|
|
39
|
-
export type StatusTagTypeArray = StatusTagType[];
|
|
40
|
-
/**
|
|
41
|
-
* ContactIncludeField
|
|
42
|
-
*
|
|
43
|
-
* @remarks
|
|
44
|
-
* Array type for ContactIncludeField objects. Used when the API returns a collection of ContactIncludeField instances.
|
|
45
|
-
*
|
|
46
|
-
* @example
|
|
47
|
-
* ```typescript
|
|
48
|
-
* const items: ContactIncludeFieldArray = await api.getContactIncludeFields();
|
|
49
|
-
* ```
|
|
50
|
-
*
|
|
51
|
-
* @see {@link ContactIncludeField} - The individual ContactIncludeField type definition
|
|
52
|
-
*/
|
|
53
|
-
export type ContactIncludeFieldArray = ContactIncludeField[];
|
|
54
|
-
/**
|
|
55
|
-
* ZoneIncludeField
|
|
56
|
-
*
|
|
57
|
-
* @remarks
|
|
58
|
-
* Array type for ZoneIncludeField objects. Used when the API returns a collection of ZoneIncludeField instances.
|
|
59
|
-
*
|
|
60
|
-
* @example
|
|
61
|
-
* ```typescript
|
|
62
|
-
* const items: ZoneIncludeFieldArray = await api.getZoneIncludeFields();
|
|
63
|
-
* ```
|
|
64
|
-
*
|
|
65
|
-
* @see {@link ZoneIncludeField} - The individual ZoneIncludeField type definition
|
|
66
|
-
*/
|
|
67
|
-
export type ZoneIncludeFieldArray = ZoneIncludeField[];
|
|
68
|
-
/**
|
|
69
|
-
* DomainIncludeField
|
|
70
|
-
*
|
|
71
|
-
* @remarks
|
|
72
|
-
* Array type for DomainIncludeField objects. Used when the API returns a collection of DomainIncludeField instances.
|
|
73
|
-
*
|
|
74
|
-
* @example
|
|
75
|
-
* ```typescript
|
|
76
|
-
* const items: DomainIncludeFieldArray = await api.getDomainIncludeFields();
|
|
77
|
-
* ```
|
|
78
|
-
*
|
|
79
|
-
* @see {@link DomainIncludeField} - The individual DomainIncludeField type definition
|
|
80
|
-
*/
|
|
81
|
-
export type DomainIncludeFieldArray = DomainIncludeField[];
|
|
82
|
-
/**
|
|
83
|
-
* DomainDnssecDataResponse
|
|
84
|
-
*
|
|
85
|
-
* @remarks
|
|
86
|
-
* Array type for DomainDnssecDataResponse objects. Used when the API returns a collection of DomainDnssecDataResponse instances.
|
|
87
|
-
*
|
|
88
|
-
* @example
|
|
89
|
-
* ```typescript
|
|
90
|
-
* const items: DomainDnssecDataArray = await api.getDomainDnssecDatas();
|
|
91
|
-
* ```
|
|
92
|
-
*
|
|
93
|
-
* @see {@link DomainDnssecData} - The individual DomainDnssecDataResponse type definition
|
|
94
|
-
*/
|
|
95
|
-
export type DomainDnssecDataArray = DomainDnssecData[];
|
|
96
|
-
/**
|
|
97
|
-
* DomainDnssecDataCreate
|
|
98
|
-
*
|
|
99
|
-
* @remarks
|
|
100
|
-
* Array type for DomainDnssecDataCreate objects. Used when the API returns a collection of DomainDnssecDataCreate instances.
|
|
101
|
-
*
|
|
102
|
-
* @example
|
|
103
|
-
* ```typescript
|
|
104
|
-
* const items: DomainDnssecDataCreateArray = await api.getDomainDnssecDataCreates();
|
|
105
|
-
* ```
|
|
106
|
-
*
|
|
107
|
-
* @see {@link DomainDnssecDataCreate} - The individual DomainDnssecDataCreate type definition
|
|
108
|
-
*/
|
|
109
|
-
export type DomainDnssecDataCreateArray = DomainDnssecDataCreate[];
|
|
110
|
-
/**
|
|
111
|
-
* JobStatus
|
|
112
|
-
*
|
|
113
|
-
* @remarks
|
|
114
|
-
* Array type for JobStatus objects. Used when the API returns a collection of JobStatus instances.
|
|
115
|
-
*
|
|
116
|
-
* @example
|
|
117
|
-
* ```typescript
|
|
118
|
-
* const items: JobStatusArray = await api.getJobStatuss();
|
|
119
|
-
* ```
|
|
120
|
-
*
|
|
121
|
-
* @see {@link JobStatus} - The individual JobStatus type definition
|
|
122
|
-
*/
|
|
123
|
-
export type JobStatusArray = JobStatus[];
|
|
124
|
-
/**
|
|
125
|
-
* OrganizationAttributeResponse
|
|
126
|
-
*
|
|
127
|
-
* @remarks
|
|
128
|
-
* Array type for OrganizationAttributeResponse objects. Used when the API returns a collection of OrganizationAttributeResponse instances.
|
|
129
|
-
*
|
|
130
|
-
* @example
|
|
131
|
-
* ```typescript
|
|
132
|
-
* const items: OrganizationAttributeArray = await api.getOrganizationAttributes();
|
|
133
|
-
* ```
|
|
134
|
-
*
|
|
135
|
-
* @see {@link OrganizationAttribute} - The individual OrganizationAttributeResponse type definition
|
|
136
|
-
*/
|
|
137
|
-
export type OrganizationAttributeArray = OrganizationAttribute[];
|
|
138
|
-
/**
|
|
139
|
-
* OrganizationAttributeUpdate
|
|
140
|
-
*
|
|
141
|
-
* @remarks
|
|
142
|
-
* Array type for OrganizationAttributeUpdate objects. Used when the API returns a collection of OrganizationAttributeUpdate instances.
|
|
143
|
-
*
|
|
144
|
-
* @example
|
|
145
|
-
* ```typescript
|
|
146
|
-
* const items: OrganizationAttributeUpdateArray = await api.getOrganizationAttributeUpdates();
|
|
147
|
-
* ```
|
|
148
|
-
*
|
|
149
|
-
* @see {@link OrganizationAttributeUpdate} - The individual OrganizationAttributeUpdate type definition
|
|
150
|
-
*/
|
|
151
|
-
export type OrganizationAttributeUpdateArray = OrganizationAttributeUpdate[];
|
|
152
|
-
/**
|
|
153
|
-
* IpRestrictionResponse
|
|
154
|
-
*
|
|
155
|
-
* @remarks
|
|
156
|
-
* Array type for IpRestrictionResponse objects. Used when the API returns a collection of IpRestrictionResponse instances.
|
|
157
|
-
*
|
|
158
|
-
* @example
|
|
159
|
-
* ```typescript
|
|
160
|
-
* const items: IpRestrictionArray = await api.getIpRestrictions();
|
|
161
|
-
* ```
|
|
162
|
-
*
|
|
163
|
-
* @see {@link IpRestriction} - The individual IpRestrictionResponse type definition
|
|
164
|
-
*/
|
|
165
|
-
export type IpRestrictionArray = IpRestriction[];
|
|
166
|
-
/**
|
|
167
|
-
* ReportType
|
|
168
|
-
*
|
|
169
|
-
* @remarks
|
|
170
|
-
* Array type for ReportType objects. Used when the API returns a collection of ReportType instances.
|
|
171
|
-
*
|
|
172
|
-
* @example
|
|
173
|
-
* ```typescript
|
|
174
|
-
* const items: ReportTypeArray = await api.getReportTypes();
|
|
175
|
-
* ```
|
|
176
|
-
*
|
|
177
|
-
* @see {@link ReportType} - The individual ReportType type definition
|
|
178
|
-
*/
|
|
179
|
-
export type ReportTypeArray = ReportType[];
|
|
180
|
-
/**
|
|
181
|
-
* ReportStatus
|
|
182
|
-
*
|
|
183
|
-
* @remarks
|
|
184
|
-
* Array type for ReportStatus objects. Used when the API returns a collection of ReportStatus instances.
|
|
185
|
-
*
|
|
186
|
-
* @example
|
|
187
|
-
* ```typescript
|
|
188
|
-
* const items: ReportStatusArray = await api.getReportStatuss();
|
|
189
|
-
* ```
|
|
190
|
-
*
|
|
191
|
-
* @see {@link ReportStatus} - The individual ReportStatus type definition
|
|
192
|
-
*/
|
|
193
|
-
export type ReportStatusArray = ReportStatus[];
|
|
194
|
-
/**
|
|
195
|
-
* TagType
|
|
196
|
-
*
|
|
197
|
-
* @remarks
|
|
198
|
-
* Array type for TagType objects. Used when the API returns a collection of TagType instances.
|
|
199
|
-
*
|
|
200
|
-
* @example
|
|
201
|
-
* ```typescript
|
|
202
|
-
* const items: TagTypeArray = await api.getTagTypes();
|
|
203
|
-
* ```
|
|
204
|
-
*
|
|
205
|
-
* @see {@link TagType} - The individual TagType type definition
|
|
206
|
-
*/
|
|
207
|
-
export type TagTypeArray = TagType[];
|
|
208
|
-
/**
|
|
209
|
-
* TldResponseShort
|
|
210
|
-
*
|
|
211
|
-
* @remarks
|
|
212
|
-
* Array type for TldResponseShort objects. Used when the API returns a collection of TldResponseShort instances.
|
|
213
|
-
*
|
|
214
|
-
* @example
|
|
215
|
-
* ```typescript
|
|
216
|
-
* const items: TldResponseShortArray = await api.getTldResponseShorts();
|
|
217
|
-
* ```
|
|
218
|
-
*
|
|
219
|
-
* @see {@link TldResponseShort} - The individual TldResponseShort type definition
|
|
220
|
-
*/
|
|
221
|
-
export type TldResponseShortArray = TldResponseShort[];
|
|
222
|
-
/**
|
|
223
|
-
* TmClaim. A single trademark claim within a notice (claimType in RFC 9361)
|
|
224
|
-
*
|
|
225
|
-
* @remarks
|
|
226
|
-
* Array type for TmClaim objects. Used when the API returns a collection of TmClaim instances.
|
|
227
|
-
*
|
|
228
|
-
* @example
|
|
229
|
-
* ```typescript
|
|
230
|
-
* const items: TmClaimArray = await api.getTmClaims();
|
|
231
|
-
* ```
|
|
232
|
-
*
|
|
233
|
-
* @see {@link TmClaim} - The individual TmClaim type definition
|
|
234
|
-
*/
|
|
235
|
-
export type TmClaimArray = TmClaim[];
|
|
236
|
-
/**
|
|
237
|
-
* ClaimsNotice
|
|
238
|
-
*
|
|
239
|
-
* @remarks
|
|
240
|
-
* Array type for ClaimsNotice objects. Used when the API returns a collection of ClaimsNotice instances.
|
|
241
|
-
*
|
|
242
|
-
* @example
|
|
243
|
-
* ```typescript
|
|
244
|
-
* const items: ClaimsNoticeArray = await api.getClaimsNotices();
|
|
245
|
-
* ```
|
|
246
|
-
*
|
|
247
|
-
* @see {@link ClaimsNotice} - The individual ClaimsNotice type definition
|
|
248
|
-
*/
|
|
249
|
-
export type ClaimsNoticeArray = ClaimsNotice[];
|
|
250
|
-
/**
|
|
251
|
-
* ContactAttestVerificationReq
|
|
252
|
-
*
|
|
253
|
-
* @remarks
|
|
254
|
-
* Array type for ContactAttestVerificationReq objects. Used when the API returns a collection of ContactAttestVerificationReq instances.
|
|
255
|
-
*
|
|
256
|
-
* @example
|
|
257
|
-
* ```typescript
|
|
258
|
-
* const items: ContactAttestVerificationReqArray = await api.getContactAttestVerificationReqs();
|
|
259
|
-
* ```
|
|
260
|
-
*
|
|
261
|
-
* @see {@link ContactAttestVerificationReq} - The individual ContactAttestVerificationReq type definition
|
|
262
|
-
*/
|
|
263
|
-
export type ContactAttestVerificationReqArray = ContactAttestVerificationReq[];
|
|
264
|
-
/**
|
|
265
|
-
* ContactVerificationStatus
|
|
266
|
-
*
|
|
267
|
-
* @remarks
|
|
268
|
-
* Array type for ContactVerificationStatus objects. Used when the API returns a collection of ContactVerificationStatus instances.
|
|
269
|
-
*
|
|
270
|
-
* @example
|
|
271
|
-
* ```typescript
|
|
272
|
-
* const items: ContactVerificationStatusArray = await api.getContactVerificationStatuss();
|
|
273
|
-
* ```
|
|
274
|
-
*
|
|
275
|
-
* @see {@link ContactVerificationStatus} - The individual ContactVerificationStatus type definition
|
|
276
|
-
*/
|
|
277
|
-
export type ContactVerificationStatusArray = ContactVerificationStatus[];
|
|
278
|
-
/**
|
|
279
|
-
* AttributeCondition
|
|
280
|
-
*
|
|
281
|
-
* @remarks
|
|
282
|
-
* Array type for AttributeCondition objects. Used when the API returns a collection of AttributeCondition instances.
|
|
283
|
-
*
|
|
284
|
-
* @example
|
|
285
|
-
* ```typescript
|
|
286
|
-
* const items: AttributeConditionArray = await api.getAttributeConditions();
|
|
287
|
-
* ```
|
|
288
|
-
*
|
|
289
|
-
* @see {@link AttributeCondition} - The individual AttributeCondition type definition
|
|
290
|
-
*/
|
|
291
|
-
export type AttributeConditionArray = AttributeCondition[];
|
|
292
|
-
/**
|
|
293
|
-
* DomainContactType
|
|
294
|
-
*
|
|
295
|
-
* @remarks
|
|
296
|
-
* Array type for DomainContactType objects. Used when the API returns a collection of DomainContactType instances.
|
|
297
|
-
*
|
|
298
|
-
* @example
|
|
299
|
-
* ```typescript
|
|
300
|
-
* const items: DomainContactTypeArray = await api.getDomainContactTypes();
|
|
301
|
-
* ```
|
|
302
|
-
*
|
|
303
|
-
* @see {@link DomainContactType} - The individual DomainContactType type definition
|
|
304
|
-
*/
|
|
305
|
-
export type DomainContactTypeArray = DomainContactType[];
|
|
306
|
-
/**
|
|
307
|
-
* ContactCreateBulkInstance
|
|
308
|
-
*
|
|
309
|
-
* @remarks
|
|
310
|
-
* Array type for ContactCreateBulkInstance objects. Used when the API returns a collection of ContactCreateBulkInstance instances.
|
|
311
|
-
*
|
|
312
|
-
* @example
|
|
313
|
-
* ```typescript
|
|
314
|
-
* const items: ContactCreateBulkInstanceArray = await api.getContactCreateBulkInstances();
|
|
315
|
-
* ```
|
|
316
|
-
*
|
|
317
|
-
* @see {@link ContactCreateBulkInstance} - The individual ContactCreateBulkInstance type definition
|
|
318
|
-
*/
|
|
319
|
-
export type ContactCreateBulkInstanceArray = ContactCreateBulkInstance[];
|
|
320
|
-
/**
|
|
321
|
-
* ContactAttributeLinkDetail
|
|
322
|
-
*
|
|
323
|
-
* @remarks
|
|
324
|
-
* Array type for ContactAttributeLinkDetail objects. Used when the API returns a collection of ContactAttributeLinkDetail instances.
|
|
325
|
-
*
|
|
326
|
-
* @example
|
|
327
|
-
* ```typescript
|
|
328
|
-
* const items: ContactAttributeLinkDetailArray = await api.getContactAttributeLinkDetails();
|
|
329
|
-
* ```
|
|
330
|
-
*
|
|
331
|
-
* @see {@link ContactAttributeLinkDetail} - The individual ContactAttributeLinkDetail type definition
|
|
332
|
-
*/
|
|
333
|
-
export type ContactAttributeLinkDetailArray = ContactAttributeLinkDetail[];
|
|
334
|
-
/**
|
|
335
|
-
* StatusTagResponse
|
|
336
|
-
*
|
|
337
|
-
* @remarks
|
|
338
|
-
* Array type for StatusTagResponse objects. Used when the API returns a collection of StatusTagResponse instances.
|
|
339
|
-
*
|
|
340
|
-
* @example
|
|
341
|
-
* ```typescript
|
|
342
|
-
* const items: StatusTagArray = await api.getStatusTags();
|
|
343
|
-
* ```
|
|
344
|
-
*
|
|
345
|
-
* @see {@link StatusTag} - The individual StatusTagResponse type definition
|
|
346
|
-
*/
|
|
347
|
-
export type StatusTagArray = StatusTag[];
|
|
348
|
-
/**
|
|
349
|
-
* TagEnrichedResponse
|
|
350
|
-
*
|
|
351
|
-
* @remarks
|
|
352
|
-
* Array type for TagEnrichedResponse objects. Used when the API returns a collection of TagEnrichedResponse instances.
|
|
353
|
-
*
|
|
354
|
-
* @example
|
|
355
|
-
* ```typescript
|
|
356
|
-
* const items: TagEnrichedArray = await api.getTagEnricheds();
|
|
357
|
-
* ```
|
|
358
|
-
*
|
|
359
|
-
* @see {@link TagEnriched} - The individual TagEnrichedResponse type definition
|
|
360
|
-
*/
|
|
361
|
-
export type TagEnrichedArray = TagEnriched[];
|
|
362
|
-
/**
|
|
363
|
-
* ContactAttributeDefinition. Definition of a possible attribute for a TLD.
|
|
364
|
-
*
|
|
365
|
-
* @remarks
|
|
366
|
-
* Array type for ContactAttributeDefinition objects. Used when the API returns a collection of ContactAttributeDefinition instances.
|
|
367
|
-
*
|
|
368
|
-
* @example
|
|
369
|
-
* ```typescript
|
|
370
|
-
* const items: ContactAttributeDefinitionArray = await api.getContactAttributeDefinitions();
|
|
371
|
-
* ```
|
|
372
|
-
*
|
|
373
|
-
* @see {@link ContactAttributeDefinition} - The individual ContactAttributeDefinition type definition
|
|
374
|
-
*/
|
|
375
|
-
export type ContactAttributeDefinitionArray = ContactAttributeDefinition[];
|
|
376
|
-
/**
|
|
377
|
-
* PostalAddressType
|
|
378
|
-
*
|
|
379
|
-
* @remarks
|
|
380
|
-
* Array type for PostalAddressType objects. Used when the API returns a collection of PostalAddressType instances.
|
|
381
|
-
*
|
|
382
|
-
* @example
|
|
383
|
-
* ```typescript
|
|
384
|
-
* const items: PostalAddressTypeArray = await api.getPostalAddressTypes();
|
|
385
|
-
* ```
|
|
386
|
-
*
|
|
387
|
-
* @see {@link PostalAddressType} - The individual PostalAddressType type definition
|
|
388
|
-
*/
|
|
389
|
-
export type PostalAddressTypeArray = PostalAddressType[];
|
|
390
|
-
/**
|
|
391
|
-
* ContactConfigBase
|
|
392
|
-
*
|
|
393
|
-
* @remarks
|
|
394
|
-
* Array type for ContactConfigBase objects. Used when the API returns a collection of ContactConfigBase instances.
|
|
395
|
-
*
|
|
396
|
-
* @example
|
|
397
|
-
* ```typescript
|
|
398
|
-
* const items: ContactConfigBaseArray = await api.getContactConfigBases();
|
|
399
|
-
* ```
|
|
400
|
-
*
|
|
401
|
-
* @see {@link ContactConfigBase} - The individual ContactConfigBase type definition
|
|
402
|
-
*/
|
|
403
|
-
export type ContactConfigBaseArray = ContactConfigBase[];
|
|
404
|
-
/**
|
|
405
|
-
* Context
|
|
406
|
-
*
|
|
407
|
-
* @remarks
|
|
408
|
-
* Array type for Context objects. Used when the API returns a collection of Context instances.
|
|
409
|
-
*
|
|
410
|
-
* @example
|
|
411
|
-
* ```typescript
|
|
412
|
-
* const items: ContextArray = await api.getContexts();
|
|
413
|
-
* ```
|
|
414
|
-
*
|
|
415
|
-
* @see {@link Context} - The individual Context type definition
|
|
416
|
-
*/
|
|
417
|
-
export type ContextArray = Context[];
|
|
418
|
-
/**
|
|
419
|
-
* Conversation
|
|
420
|
-
*
|
|
421
|
-
* @remarks
|
|
422
|
-
* Array type for Conversation objects. Used when the API returns a collection of Conversation instances.
|
|
423
|
-
*
|
|
424
|
-
* @example
|
|
425
|
-
* ```typescript
|
|
426
|
-
* const items: ConversationArray = await api.getConversations();
|
|
427
|
-
* ```
|
|
428
|
-
*
|
|
429
|
-
* @see {@link Conversation} - The individual Conversation type definition
|
|
430
|
-
*/
|
|
431
|
-
export type ConversationArray = Conversation[];
|
|
432
|
-
/**
|
|
433
|
-
* DuplicateCommand
|
|
434
|
-
*
|
|
435
|
-
* @remarks
|
|
436
|
-
* Array type for DuplicateCommand objects. Used when the API returns a collection of DuplicateCommand instances.
|
|
437
|
-
*
|
|
438
|
-
* @example
|
|
439
|
-
* ```typescript
|
|
440
|
-
* const items: DuplicateCommandArray = await api.getDuplicateCommands();
|
|
441
|
-
* ```
|
|
442
|
-
*
|
|
443
|
-
* @see {@link DuplicateCommand} - The individual DuplicateCommand type definition
|
|
444
|
-
*/
|
|
445
|
-
export type DuplicateCommandArray = DuplicateCommand[];
|
|
446
|
-
/**
|
|
447
|
-
* CommandError
|
|
448
|
-
*
|
|
449
|
-
* @remarks
|
|
450
|
-
* Array type for CommandError objects. Used when the API returns a collection of CommandError instances.
|
|
451
|
-
*
|
|
452
|
-
* @example
|
|
453
|
-
* ```typescript
|
|
454
|
-
* const items: CommandErrorArray = await api.getCommandErrors();
|
|
455
|
-
* ```
|
|
456
|
-
*
|
|
457
|
-
* @see {@link CommandError} - The individual CommandError type definition
|
|
458
|
-
*/
|
|
459
|
-
export type CommandErrorArray = CommandError[];
|
|
460
|
-
/**
|
|
461
|
-
* DnsChangeResponse
|
|
462
|
-
*
|
|
463
|
-
* @remarks
|
|
464
|
-
* Array type for DnsChangeResponse objects. Used when the API returns a collection of DnsChangeResponse instances.
|
|
465
|
-
*
|
|
466
|
-
* @example
|
|
467
|
-
* ```typescript
|
|
468
|
-
* const items: DnsChangeArray = await api.getDnsChanges();
|
|
469
|
-
* ```
|
|
470
|
-
*
|
|
471
|
-
* @see {@link DnsChange} - The individual DnsChangeResponse type definition
|
|
472
|
-
*/
|
|
473
|
-
export type DnsChangeArray = DnsChange[];
|
|
474
|
-
/**
|
|
475
|
-
* DnsRecordCreate
|
|
476
|
-
*
|
|
477
|
-
* @remarks
|
|
478
|
-
* Array type for DnsRecordCreate objects. Used when the API returns a collection of DnsRecordCreate instances.
|
|
479
|
-
*
|
|
480
|
-
* @example
|
|
481
|
-
* ```typescript
|
|
482
|
-
* const items: DnsRecordCreateArray = await api.getDnsRecordCreates();
|
|
483
|
-
* ```
|
|
484
|
-
*
|
|
485
|
-
* @see {@link DnsRecordCreate} - The individual DnsRecordCreate type definition
|
|
486
|
-
*/
|
|
487
|
-
export type DnsRecordCreateArray = DnsRecordCreate[];
|
|
488
|
-
/**
|
|
489
|
-
* DnsRecordResponse
|
|
490
|
-
*
|
|
491
|
-
* @remarks
|
|
492
|
-
* Array type for DnsRecordResponse objects. Used when the API returns a collection of DnsRecordResponse instances.
|
|
493
|
-
*
|
|
494
|
-
* @example
|
|
495
|
-
* ```typescript
|
|
496
|
-
* const items: DnsRecordArray = await api.getDnsRecords();
|
|
497
|
-
* ```
|
|
498
|
-
*
|
|
499
|
-
* @see {@link DnsRecord} - The individual DnsRecordResponse type definition
|
|
500
|
-
*/
|
|
501
|
-
export type DnsRecordArray = DnsRecord[];
|
|
502
|
-
/**
|
|
503
|
-
* DnsRrsetCreate
|
|
504
|
-
*
|
|
505
|
-
* @remarks
|
|
506
|
-
* Array type for DnsRrsetCreate objects. Used when the API returns a collection of DnsRrsetCreate instances.
|
|
507
|
-
*
|
|
508
|
-
* @example
|
|
509
|
-
* ```typescript
|
|
510
|
-
* const items: DnsRrsetCreateArray = await api.getDnsRrsetCreates();
|
|
511
|
-
* ```
|
|
512
|
-
*
|
|
513
|
-
* @see {@link DnsRrsetCreate} - The individual DnsRrsetCreate type definition
|
|
514
|
-
*/
|
|
515
|
-
export type DnsRrsetCreateArray = DnsRrsetCreate[];
|
|
516
|
-
/**
|
|
517
|
-
* DnsZoneCreateBulkInstance
|
|
518
|
-
*
|
|
519
|
-
* @remarks
|
|
520
|
-
* Array type for DnsZoneCreateBulkInstance objects. Used when the API returns a collection of DnsZoneCreateBulkInstance instances.
|
|
521
|
-
*
|
|
522
|
-
* @example
|
|
523
|
-
* ```typescript
|
|
524
|
-
* const items: DnsZoneCreateBulkInstanceArray = await api.getDnsZoneCreateBulkInstances();
|
|
525
|
-
* ```
|
|
526
|
-
*
|
|
527
|
-
* @see {@link DnsZoneCreateBulkInstance} - The individual DnsZoneCreateBulkInstance type definition
|
|
528
|
-
*/
|
|
529
|
-
export type DnsZoneCreateBulkInstanceArray = DnsZoneCreateBulkInstance[];
|
|
530
|
-
/**
|
|
531
|
-
* DnsRecordPatchOp
|
|
532
|
-
*
|
|
533
|
-
* @remarks
|
|
534
|
-
* Array type for DnsRecordPatchOp objects. Used when the API returns a collection of DnsRecordPatchOp instances.
|
|
535
|
-
*
|
|
536
|
-
* @example
|
|
537
|
-
* ```typescript
|
|
538
|
-
* const items: DnsRecordPatchOpArray = await api.getDnsRecordPatchOps();
|
|
539
|
-
* ```
|
|
540
|
-
*
|
|
541
|
-
* @see {@link DnsRecordPatchOp} - The individual DnsRecordPatchOp type definition
|
|
542
|
-
*/
|
|
543
|
-
export type DnsRecordPatchOpArray = DnsRecordPatchOp[];
|
|
544
|
-
/**
|
|
545
|
-
* DnsZonePatchRecordsBulkInstance
|
|
546
|
-
*
|
|
547
|
-
* @remarks
|
|
548
|
-
* Array type for DnsZonePatchRecordsBulkInstance objects. Used when the API returns a collection of DnsZonePatchRecordsBulkInstance instances.
|
|
549
|
-
*
|
|
550
|
-
* @example
|
|
551
|
-
* ```typescript
|
|
552
|
-
* const items: DnsZonePatchRecordsBulkInstanceArray = await api.getDnsZonePatchRecordsBulkInstances();
|
|
553
|
-
* ```
|
|
554
|
-
*
|
|
555
|
-
* @see {@link DnsZonePatchRecordsBulkInstance} - The individual DnsZonePatchRecordsBulkInstance type definition
|
|
556
|
-
*/
|
|
557
|
-
export type DnsZonePatchRecordsBulkInstanceArray = DnsZonePatchRecordsBulkInstance[];
|
|
558
|
-
/**
|
|
559
|
-
* DnsRrsetPatchOp
|
|
560
|
-
*
|
|
561
|
-
* @remarks
|
|
562
|
-
* Array type for DnsRrsetPatchOp objects. Used when the API returns a collection of DnsRrsetPatchOp instances.
|
|
563
|
-
*
|
|
564
|
-
* @example
|
|
565
|
-
* ```typescript
|
|
566
|
-
* const items: DnsRrsetPatchOpArray = await api.getDnsRrsetPatchOps();
|
|
567
|
-
* ```
|
|
568
|
-
*
|
|
569
|
-
* @see {@link DnsRrsetPatchOp} - The individual DnsRrsetPatchOp type definition
|
|
570
|
-
*/
|
|
571
|
-
export type DnsRrsetPatchOpArray = DnsRrsetPatchOp[];
|
|
572
|
-
/**
|
|
573
|
-
* DnsZonePatchRrsetsBulkInstance
|
|
574
|
-
*
|
|
575
|
-
* @remarks
|
|
576
|
-
* Array type for DnsZonePatchRrsetsBulkInstance objects. Used when the API returns a collection of DnsZonePatchRrsetsBulkInstance instances.
|
|
577
|
-
*
|
|
578
|
-
* @example
|
|
579
|
-
* ```typescript
|
|
580
|
-
* const items: DnsZonePatchRrsetsBulkInstanceArray = await api.getDnsZonePatchRrsetsBulkInstances();
|
|
581
|
-
* ```
|
|
582
|
-
*
|
|
583
|
-
* @see {@link DnsZonePatchRrsetsBulkInstance} - The individual DnsZonePatchRrsetsBulkInstance type definition
|
|
584
|
-
*/
|
|
585
|
-
export type DnsZonePatchRrsetsBulkInstanceArray = DnsZonePatchRrsetsBulkInstance[];
|
|
586
|
-
/**
|
|
587
|
-
* DnsRrsetResponse
|
|
588
|
-
*
|
|
589
|
-
* @remarks
|
|
590
|
-
* Array type for DnsRrsetResponse objects. Used when the API returns a collection of DnsRrsetResponse instances.
|
|
591
|
-
*
|
|
592
|
-
* @example
|
|
593
|
-
* ```typescript
|
|
594
|
-
* const items: DnsRrsetArray = await api.getDnsRrsets();
|
|
595
|
-
* ```
|
|
596
|
-
*
|
|
597
|
-
* @see {@link DnsRrset} - The individual DnsRrsetResponse type definition
|
|
598
|
-
*/
|
|
599
|
-
export type DnsRrsetArray = DnsRrset[];
|
|
600
|
-
/**
|
|
601
|
-
* DnsZoneUpdateBulkInstance
|
|
602
|
-
*
|
|
603
|
-
* @remarks
|
|
604
|
-
* Array type for DnsZoneUpdateBulkInstance objects. Used when the API returns a collection of DnsZoneUpdateBulkInstance instances.
|
|
605
|
-
*
|
|
606
|
-
* @example
|
|
607
|
-
* ```typescript
|
|
608
|
-
* const items: DnsZoneUpdateBulkInstanceArray = await api.getDnsZoneUpdateBulkInstances();
|
|
609
|
-
* ```
|
|
610
|
-
*
|
|
611
|
-
* @see {@link DnsZoneUpdateBulkInstance} - The individual DnsZoneUpdateBulkInstance type definition
|
|
612
|
-
*/
|
|
613
|
-
export type DnsZoneUpdateBulkInstanceArray = DnsZoneUpdateBulkInstance[];
|
|
614
|
-
/**
|
|
615
|
-
* DomainAvailabilityResponse
|
|
616
|
-
*
|
|
617
|
-
* @remarks
|
|
618
|
-
* Array type for DomainAvailabilityResponse objects. Used when the API returns a collection of DomainAvailabilityResponse instances.
|
|
619
|
-
*
|
|
620
|
-
* @example
|
|
621
|
-
* ```typescript
|
|
622
|
-
* const items: DomainAvailabilityCheckArray = await api.getDomainAvailabilityChecks();
|
|
623
|
-
* ```
|
|
624
|
-
*
|
|
625
|
-
* @see {@link DomainAvailabilityCheck} - The individual DomainAvailabilityResponse type definition
|
|
626
|
-
*/
|
|
627
|
-
export type DomainAvailabilityCheckArray = DomainAvailabilityCheck[];
|
|
628
|
-
/**
|
|
629
|
-
* ContactHandle
|
|
630
|
-
*
|
|
631
|
-
* @remarks
|
|
632
|
-
* Array type for ContactHandle objects. Used when the API returns a collection of ContactHandle instances.
|
|
633
|
-
*
|
|
634
|
-
* @example
|
|
635
|
-
* ```typescript
|
|
636
|
-
* const items: ContactHandleArray = await api.getContactHandles();
|
|
637
|
-
* ```
|
|
638
|
-
*
|
|
639
|
-
* @see {@link ContactHandle} - The individual ContactHandle type definition
|
|
640
|
-
*/
|
|
641
|
-
export type ContactHandleArray = ContactHandle[];
|
|
642
|
-
/**
|
|
643
|
-
* Nameserver
|
|
644
|
-
*
|
|
645
|
-
* @remarks
|
|
646
|
-
* Array type for Nameserver objects. Used when the API returns a collection of Nameserver instances.
|
|
647
|
-
*
|
|
648
|
-
* @example
|
|
649
|
-
* ```typescript
|
|
650
|
-
* const items: NameserverArray = await api.getNameservers();
|
|
651
|
-
* ```
|
|
652
|
-
*
|
|
653
|
-
* @see {@link Nameserver} - The individual Nameserver type definition
|
|
654
|
-
*/
|
|
655
|
-
export type NameserverArray = Nameserver[];
|
|
656
|
-
/**
|
|
657
|
-
* DomainCreateBulkInstance
|
|
658
|
-
*
|
|
659
|
-
* @remarks
|
|
660
|
-
* Array type for DomainCreateBulkInstance objects. Used when the API returns a collection of DomainCreateBulkInstance instances.
|
|
661
|
-
*
|
|
662
|
-
* @example
|
|
663
|
-
* ```typescript
|
|
664
|
-
* const items: DomainCreateBulkInstanceArray = await api.getDomainCreateBulkInstances();
|
|
665
|
-
* ```
|
|
666
|
-
*
|
|
667
|
-
* @see {@link DomainCreateBulkInstance} - The individual DomainCreateBulkInstance type definition
|
|
668
|
-
*/
|
|
669
|
-
export type DomainCreateBulkInstanceArray = DomainCreateBulkInstance[];
|
|
670
|
-
/**
|
|
671
|
-
* BrowserStatsBucket
|
|
672
|
-
*
|
|
673
|
-
* @remarks
|
|
674
|
-
* Array type for BrowserStatsBucket objects. Used when the API returns a collection of BrowserStatsBucket instances.
|
|
675
|
-
*
|
|
676
|
-
* @example
|
|
677
|
-
* ```typescript
|
|
678
|
-
* const items: BrowserStatsBucketArray = await api.getBrowserStatsBuckets();
|
|
679
|
-
* ```
|
|
680
|
-
*
|
|
681
|
-
* @see {@link BrowserStatsBucket} - The individual BrowserStatsBucket type definition
|
|
682
|
-
*/
|
|
683
|
-
export type BrowserStatsBucketArray = BrowserStatsBucket[];
|
|
684
|
-
/**
|
|
685
|
-
* GeoStatsBucket
|
|
686
|
-
*
|
|
687
|
-
* @remarks
|
|
688
|
-
* Array type for GeoStatsBucket objects. Used when the API returns a collection of GeoStatsBucket instances.
|
|
689
|
-
*
|
|
690
|
-
* @example
|
|
691
|
-
* ```typescript
|
|
692
|
-
* const items: GeoStatsBucketArray = await api.getGeoStatsBuckets();
|
|
693
|
-
* ```
|
|
694
|
-
*
|
|
695
|
-
* @see {@link GeoStatsBucket} - The individual GeoStatsBucket type definition
|
|
696
|
-
*/
|
|
697
|
-
export type GeoStatsBucketArray = GeoStatsBucket[];
|
|
698
|
-
/**
|
|
699
|
-
* TimeSeriesBucket
|
|
700
|
-
*
|
|
701
|
-
* @remarks
|
|
702
|
-
* Array type for TimeSeriesBucket objects. Used when the API returns a collection of TimeSeriesBucket instances.
|
|
703
|
-
*
|
|
704
|
-
* @example
|
|
705
|
-
* ```typescript
|
|
706
|
-
* const items: TimeSeriesBucketArray = await api.getTimeSeriesBuckets();
|
|
707
|
-
* ```
|
|
708
|
-
*
|
|
709
|
-
* @see {@link TimeSeriesBucket} - The individual TimeSeriesBucket type definition
|
|
710
|
-
*/
|
|
711
|
-
export type TimeSeriesBucketArray = TimeSeriesBucket[];
|
|
712
|
-
/**
|
|
713
|
-
* DomainForwardPatchOp
|
|
714
|
-
*
|
|
715
|
-
* @remarks
|
|
716
|
-
* Array type for DomainForwardPatchOp objects. Used when the API returns a collection of DomainForwardPatchOp instances.
|
|
717
|
-
*
|
|
718
|
-
* @example
|
|
719
|
-
* ```typescript
|
|
720
|
-
* const items: DomainForwardPatchOpArray = await api.getDomainForwardPatchOps();
|
|
721
|
-
* ```
|
|
722
|
-
*
|
|
723
|
-
* @see {@link DomainForwardPatchOp} - The individual DomainForwardPatchOp type definition
|
|
724
|
-
*/
|
|
725
|
-
export type DomainForwardPatchOpArray = DomainForwardPatchOp[];
|
|
726
|
-
/**
|
|
727
|
-
* PlatformStatsBucket
|
|
728
|
-
*
|
|
729
|
-
* @remarks
|
|
730
|
-
* Array type for PlatformStatsBucket objects. Used when the API returns a collection of PlatformStatsBucket instances.
|
|
731
|
-
*
|
|
732
|
-
* @example
|
|
733
|
-
* ```typescript
|
|
734
|
-
* const items: PlatformStatsBucketArray = await api.getPlatformStatsBuckets();
|
|
735
|
-
* ```
|
|
736
|
-
*
|
|
737
|
-
* @see {@link PlatformStatsBucket} - The individual PlatformStatsBucket type definition
|
|
738
|
-
*/
|
|
739
|
-
export type PlatformStatsBucketArray = PlatformStatsBucket[];
|
|
740
|
-
/**
|
|
741
|
-
* HttpRedirectRequest
|
|
742
|
-
*
|
|
743
|
-
* @remarks
|
|
744
|
-
* Array type for HttpRedirectRequest objects. Used when the API returns a collection of HttpRedirectRequest instances.
|
|
745
|
-
*
|
|
746
|
-
* @example
|
|
747
|
-
* ```typescript
|
|
748
|
-
* const items: HttpRedirectRequestArray = await api.getHttpRedirectRequests();
|
|
749
|
-
* ```
|
|
750
|
-
*
|
|
751
|
-
* @see {@link HttpRedirectRequest} - The individual HttpRedirectRequest type definition
|
|
752
|
-
*/
|
|
753
|
-
export type HttpRedirectRequestArray = HttpRedirectRequest[];
|
|
754
|
-
/**
|
|
755
|
-
* HttpRedirectListResponse
|
|
756
|
-
*
|
|
757
|
-
* @remarks
|
|
758
|
-
* Array type for HttpRedirectListResponse objects. Used when the API returns a collection of HttpRedirectListResponse instances.
|
|
759
|
-
*
|
|
760
|
-
* @example
|
|
761
|
-
* ```typescript
|
|
762
|
-
* const items: HttpRedirectListArray = await api.getHttpRedirectLists();
|
|
763
|
-
* ```
|
|
764
|
-
*
|
|
765
|
-
* @see {@link HttpRedirectList} - The individual HttpRedirectListResponse type definition
|
|
766
|
-
*/
|
|
767
|
-
export type HttpRedirectListArray = HttpRedirectList[];
|
|
768
|
-
/**
|
|
769
|
-
* ReferrerStatsBucket
|
|
770
|
-
*
|
|
771
|
-
* @remarks
|
|
772
|
-
* Array type for ReferrerStatsBucket objects. Used when the API returns a collection of ReferrerStatsBucket instances.
|
|
773
|
-
*
|
|
774
|
-
* @example
|
|
775
|
-
* ```typescript
|
|
776
|
-
* const items: ReferrerStatsBucketArray = await api.getReferrerStatsBuckets();
|
|
777
|
-
* ```
|
|
778
|
-
*
|
|
779
|
-
* @see {@link ReferrerStatsBucket} - The individual ReferrerStatsBucket type definition
|
|
780
|
-
*/
|
|
781
|
-
export type ReferrerStatsBucketArray = ReferrerStatsBucket[];
|
|
782
|
-
/**
|
|
783
|
-
* StatusCodeStatsBucket
|
|
784
|
-
*
|
|
785
|
-
* @remarks
|
|
786
|
-
* Array type for StatusCodeStatsBucket objects. Used when the API returns a collection of StatusCodeStatsBucket instances.
|
|
787
|
-
*
|
|
788
|
-
* @example
|
|
789
|
-
* ```typescript
|
|
790
|
-
* const items: StatusCodeStatsBucketArray = await api.getStatusCodeStatsBuckets();
|
|
791
|
-
* ```
|
|
792
|
-
*
|
|
793
|
-
* @see {@link StatusCodeStatsBucket} - The individual StatusCodeStatsBucket type definition
|
|
794
|
-
*/
|
|
795
|
-
export type StatusCodeStatsBucketArray = StatusCodeStatsBucket[];
|
|
796
|
-
/**
|
|
797
|
-
* UserAgentStatsBucket
|
|
798
|
-
*
|
|
799
|
-
* @remarks
|
|
800
|
-
* Array type for UserAgentStatsBucket objects. Used when the API returns a collection of UserAgentStatsBucket instances.
|
|
801
|
-
*
|
|
802
|
-
* @example
|
|
803
|
-
* ```typescript
|
|
804
|
-
* const items: UserAgentStatsBucketArray = await api.getUserAgentStatsBuckets();
|
|
805
|
-
* ```
|
|
806
|
-
*
|
|
807
|
-
* @see {@link UserAgentStatsBucket} - The individual UserAgentStatsBucket type definition
|
|
808
|
-
*/
|
|
809
|
-
export type UserAgentStatsBucketArray = UserAgentStatsBucket[];
|
|
810
|
-
/**
|
|
811
|
-
* VisitsByKeyBucket
|
|
812
|
-
*
|
|
813
|
-
* @remarks
|
|
814
|
-
* Array type for VisitsByKeyBucket objects. Used when the API returns a collection of VisitsByKeyBucket instances.
|
|
815
|
-
*
|
|
816
|
-
* @example
|
|
817
|
-
* ```typescript
|
|
818
|
-
* const items: VisitsByKeyBucketArray = await api.getVisitsByKeyBuckets();
|
|
819
|
-
* ```
|
|
820
|
-
*
|
|
821
|
-
* @see {@link VisitsByKeyBucket} - The individual VisitsByKeyBucket type definition
|
|
822
|
-
*/
|
|
823
|
-
export type VisitsByKeyBucketArray = VisitsByKeyBucket[];
|
|
824
|
-
/**
|
|
825
|
-
* DomainForward
|
|
826
|
-
*
|
|
827
|
-
* @remarks
|
|
828
|
-
* Array type for DomainForward objects. Used when the API returns a collection of DomainForward instances.
|
|
829
|
-
*
|
|
830
|
-
* @example
|
|
831
|
-
* ```typescript
|
|
832
|
-
* const items: DomainForwardArray = await api.getDomainForwards();
|
|
833
|
-
* ```
|
|
834
|
-
*
|
|
835
|
-
* @see {@link DomainForward} - The individual DomainForward type definition
|
|
836
|
-
*/
|
|
837
|
-
export type DomainForwardArray = DomainForward[];
|
|
838
|
-
/**
|
|
839
|
-
* DeletePolicyType
|
|
840
|
-
*
|
|
841
|
-
* @remarks
|
|
842
|
-
* Array type for DeletePolicyType objects. Used when the API returns a collection of DeletePolicyType instances.
|
|
843
|
-
*
|
|
844
|
-
* @example
|
|
845
|
-
* ```typescript
|
|
846
|
-
* const items: DeletePolicyTypeArray = await api.getDeletePolicyTypes();
|
|
847
|
-
* ```
|
|
848
|
-
*
|
|
849
|
-
* @see {@link DeletePolicyType} - The individual DeletePolicyType type definition
|
|
850
|
-
*/
|
|
851
|
-
export type DeletePolicyTypeArray = DeletePolicyType[];
|
|
852
|
-
/**
|
|
853
|
-
* SyncOperationType
|
|
854
|
-
*
|
|
855
|
-
* @remarks
|
|
856
|
-
* Array type for SyncOperationType objects. Used when the API returns a collection of SyncOperationType instances.
|
|
857
|
-
*
|
|
858
|
-
* @example
|
|
859
|
-
* ```typescript
|
|
860
|
-
* const items: SyncOperationTypeArray = await api.getSyncOperationTypes();
|
|
861
|
-
* ```
|
|
862
|
-
*
|
|
863
|
-
* @see {@link SyncOperationType} - The individual SyncOperationType type definition
|
|
864
|
-
*/
|
|
865
|
-
export type SyncOperationTypeArray = SyncOperationType[];
|
|
866
|
-
/**
|
|
867
|
-
* DomainContactResponse
|
|
868
|
-
*
|
|
869
|
-
* @remarks
|
|
870
|
-
* Array type for DomainContactResponse objects. Used when the API returns a collection of DomainContactResponse instances.
|
|
871
|
-
*
|
|
872
|
-
* @example
|
|
873
|
-
* ```typescript
|
|
874
|
-
* const items: DomainContactArray = await api.getDomainContacts();
|
|
875
|
-
* ```
|
|
876
|
-
*
|
|
877
|
-
* @see {@link DomainContact} - The individual DomainContactResponse type definition
|
|
878
|
-
*/
|
|
879
|
-
export type DomainContactArray = DomainContact[];
|
|
880
|
-
/**
|
|
881
|
-
* DomainHostResponse
|
|
882
|
-
*
|
|
883
|
-
* @remarks
|
|
884
|
-
* Array type for DomainHostResponse objects. Used when the API returns a collection of DomainHostResponse instances.
|
|
885
|
-
*
|
|
886
|
-
* @example
|
|
887
|
-
* ```typescript
|
|
888
|
-
* const items: DomainHostArray = await api.getDomainHosts();
|
|
889
|
-
* ```
|
|
890
|
-
*
|
|
891
|
-
* @see {@link DomainHost} - The individual DomainHostResponse type definition
|
|
892
|
-
*/
|
|
893
|
-
export type DomainHostArray = DomainHost[];
|
|
894
|
-
/**
|
|
895
|
-
* DomainSearchSuggestionWithPrice
|
|
896
|
-
*
|
|
897
|
-
* @remarks
|
|
898
|
-
* Array type for DomainSearchSuggestionWithPrice objects. Used when the API returns a collection of DomainSearchSuggestionWithPrice instances.
|
|
899
|
-
*
|
|
900
|
-
* @example
|
|
901
|
-
* ```typescript
|
|
902
|
-
* const items: DomainSearchSuggestionWithPriceArray = await api.getDomainSearchSuggestionWithPrices();
|
|
903
|
-
* ```
|
|
904
|
-
*
|
|
905
|
-
* @see {@link DomainSearchSuggestionWithPrice} - The individual DomainSearchSuggestionWithPrice type definition
|
|
906
|
-
*/
|
|
907
|
-
export type DomainSearchSuggestionWithPriceArray = DomainSearchSuggestionWithPrice[];
|
|
908
|
-
/**
|
|
909
|
-
* DomainStatus
|
|
910
|
-
*
|
|
911
|
-
* @remarks
|
|
912
|
-
* Array type for DomainStatus objects. Used when the API returns a collection of DomainStatus instances.
|
|
913
|
-
*
|
|
914
|
-
* @example
|
|
915
|
-
* ```typescript
|
|
916
|
-
* const items: DomainStatusArray = await api.getDomainStatuss();
|
|
917
|
-
* ```
|
|
918
|
-
*
|
|
919
|
-
* @see {@link DomainStatus} - The individual DomainStatus type definition
|
|
920
|
-
*/
|
|
921
|
-
export type DomainStatusArray = DomainStatus[];
|
|
922
|
-
/**
|
|
923
|
-
* DomainTransferBulkInstance
|
|
924
|
-
*
|
|
925
|
-
* @remarks
|
|
926
|
-
* Array type for DomainTransferBulkInstance objects. Used when the API returns a collection of DomainTransferBulkInstance instances.
|
|
927
|
-
*
|
|
928
|
-
* @example
|
|
929
|
-
* ```typescript
|
|
930
|
-
* const items: DomainTransferBulkInstanceArray = await api.getDomainTransferBulkInstances();
|
|
931
|
-
* ```
|
|
932
|
-
*
|
|
933
|
-
* @see {@link DomainTransferBulkInstance} - The individual DomainTransferBulkInstance type definition
|
|
934
|
-
*/
|
|
935
|
-
export type DomainTransferBulkInstanceArray = DomainTransferBulkInstance[];
|
|
936
|
-
/**
|
|
937
|
-
* DomainClientStatus
|
|
938
|
-
*
|
|
939
|
-
* @remarks
|
|
940
|
-
* Array type for DomainClientStatus objects. Used when the API returns a collection of DomainClientStatus instances.
|
|
941
|
-
*
|
|
942
|
-
* @example
|
|
943
|
-
* ```typescript
|
|
944
|
-
* const items: DomainClientStatusArray = await api.getDomainClientStatuss();
|
|
945
|
-
* ```
|
|
946
|
-
*
|
|
947
|
-
* @see {@link DomainClientStatus} - The individual DomainClientStatus type definition
|
|
948
|
-
*/
|
|
949
|
-
export type DomainClientStatusArray = DomainClientStatus[];
|
|
950
|
-
/**
|
|
951
|
-
* DomainUpdateBulkInstance
|
|
952
|
-
*
|
|
953
|
-
* @remarks
|
|
954
|
-
* Array type for DomainUpdateBulkInstance objects. Used when the API returns a collection of DomainUpdateBulkInstance instances.
|
|
955
|
-
*
|
|
956
|
-
* @example
|
|
957
|
-
* ```typescript
|
|
958
|
-
* const items: DomainUpdateBulkInstanceArray = await api.getDomainUpdateBulkInstances();
|
|
959
|
-
* ```
|
|
960
|
-
*
|
|
961
|
-
* @see {@link DomainUpdateBulkInstance} - The individual DomainUpdateBulkInstance type definition
|
|
962
|
-
*/
|
|
963
|
-
export type DomainUpdateBulkInstanceArray = DomainUpdateBulkInstance[];
|
|
964
|
-
/**
|
|
965
|
-
* VerificationRegistrantDetails
|
|
966
|
-
*
|
|
967
|
-
* @remarks
|
|
968
|
-
* Array type for VerificationRegistrantDetails objects. Used when the API returns a collection of VerificationRegistrantDetails instances.
|
|
969
|
-
*
|
|
970
|
-
* @example
|
|
971
|
-
* ```typescript
|
|
972
|
-
* const items: VerificationRegistrantDetailsArray = await api.getVerificationRegistrantDetailss();
|
|
973
|
-
* ```
|
|
974
|
-
*
|
|
975
|
-
* @see {@link VerificationRegistrantDetails} - The individual VerificationRegistrantDetails type definition
|
|
976
|
-
*/
|
|
977
|
-
export type VerificationRegistrantDetailsArray = VerificationRegistrantDetails[];
|
|
978
|
-
/**
|
|
979
|
-
* VerificationClaimType
|
|
980
|
-
*
|
|
981
|
-
* @remarks
|
|
982
|
-
* Array type for VerificationClaimType objects. Used when the API returns a collection of VerificationClaimType instances.
|
|
983
|
-
*
|
|
984
|
-
* @example
|
|
985
|
-
* ```typescript
|
|
986
|
-
* const items: VerificationClaimTypeArray = await api.getVerificationClaimTypes();
|
|
987
|
-
* ```
|
|
988
|
-
*
|
|
989
|
-
* @see {@link VerificationClaimType} - The individual VerificationClaimType type definition
|
|
990
|
-
*/
|
|
991
|
-
export type VerificationClaimTypeArray = VerificationClaimType[];
|
|
992
|
-
/**
|
|
993
|
-
* VerificationDeadline
|
|
994
|
-
*
|
|
995
|
-
* @remarks
|
|
996
|
-
* Array type for VerificationDeadline objects. Used when the API returns a collection of VerificationDeadline instances.
|
|
997
|
-
*
|
|
998
|
-
* @example
|
|
999
|
-
* ```typescript
|
|
1000
|
-
* const items: VerificationDeadlineArray = await api.getVerificationDeadlines();
|
|
1001
|
-
* ```
|
|
1002
|
-
*
|
|
1003
|
-
* @see {@link VerificationDeadline} - The individual VerificationDeadline type definition
|
|
1004
|
-
*/
|
|
1005
|
-
export type VerificationDeadlineArray = VerificationDeadline[];
|
|
1006
|
-
/**
|
|
1007
|
-
* EmailForwardAliasCreate
|
|
1008
|
-
*
|
|
1009
|
-
* @remarks
|
|
1010
|
-
* Array type for EmailForwardAliasCreate objects. Used when the API returns a collection of EmailForwardAliasCreate instances.
|
|
1011
|
-
*
|
|
1012
|
-
* @example
|
|
1013
|
-
* ```typescript
|
|
1014
|
-
* const items: EmailForwardAliasCreateArray = await api.getEmailForwardAliasCreates();
|
|
1015
|
-
* ```
|
|
1016
|
-
*
|
|
1017
|
-
* @see {@link EmailForwardAliasCreate} - The individual EmailForwardAliasCreate type definition
|
|
1018
|
-
*/
|
|
1019
|
-
export type EmailForwardAliasCreateArray = EmailForwardAliasCreate[];
|
|
1020
|
-
/**
|
|
1021
|
-
* EmailForwardLogEvent
|
|
1022
|
-
*
|
|
1023
|
-
* @remarks
|
|
1024
|
-
* Array type for EmailForwardLogEvent objects. Used when the API returns a collection of EmailForwardLogEvent instances.
|
|
1025
|
-
*
|
|
1026
|
-
* @example
|
|
1027
|
-
* ```typescript
|
|
1028
|
-
* const items: EmailForwardLogEventArray = await api.getEmailForwardLogEvents();
|
|
1029
|
-
* ```
|
|
1030
|
-
*
|
|
1031
|
-
* @see {@link EmailForwardLogEvent} - The individual EmailForwardLogEvent type definition
|
|
1032
|
-
*/
|
|
1033
|
-
export type EmailForwardLogEventArray = EmailForwardLogEvent[];
|
|
1034
|
-
/**
|
|
1035
|
-
* EmailForwardAliasMetrics
|
|
1036
|
-
*
|
|
1037
|
-
* @remarks
|
|
1038
|
-
* Array type for EmailForwardAliasMetrics objects. Used when the API returns a collection of EmailForwardAliasMetrics instances.
|
|
1039
|
-
*
|
|
1040
|
-
* @example
|
|
1041
|
-
* ```typescript
|
|
1042
|
-
* const items: EmailForwardAliasMetricsArray = await api.getEmailForwardAliasMetricss();
|
|
1043
|
-
* ```
|
|
1044
|
-
*
|
|
1045
|
-
* @see {@link EmailForwardAliasMetrics} - The individual EmailForwardAliasMetrics type definition
|
|
1046
|
-
*/
|
|
1047
|
-
export type EmailForwardAliasMetricsArray = EmailForwardAliasMetrics[];
|
|
1048
|
-
/**
|
|
1049
|
-
* EmailForwardAlias
|
|
1050
|
-
*
|
|
1051
|
-
* @remarks
|
|
1052
|
-
* Array type for EmailForwardAlias objects. Used when the API returns a collection of EmailForwardAlias instances.
|
|
1053
|
-
*
|
|
1054
|
-
* @example
|
|
1055
|
-
* ```typescript
|
|
1056
|
-
* const items: EmailForwardAliasArray = await api.getEmailForwardAliass();
|
|
1057
|
-
* ```
|
|
1058
|
-
*
|
|
1059
|
-
* @see {@link EmailForwardAlias} - The individual EmailForwardAlias type definition
|
|
1060
|
-
*/
|
|
1061
|
-
export type EmailForwardAliasArray = EmailForwardAlias[];
|
|
1062
|
-
/**
|
|
1063
|
-
* EmailForwardResponse
|
|
1064
|
-
*
|
|
1065
|
-
* @remarks
|
|
1066
|
-
* Array type for EmailForwardResponse objects. Used when the API returns a collection of EmailForwardResponse instances.
|
|
1067
|
-
*
|
|
1068
|
-
* @example
|
|
1069
|
-
* ```typescript
|
|
1070
|
-
* const items: EmailForwardArray = await api.getEmailForwards();
|
|
1071
|
-
* ```
|
|
1072
|
-
*
|
|
1073
|
-
* @see {@link EmailForward} - The individual EmailForwardResponse type definition
|
|
1074
|
-
*/
|
|
1075
|
-
export type EmailForwardArray = EmailForward[];
|
|
1076
|
-
/**
|
|
1077
|
-
* PriceInfo
|
|
1078
|
-
*
|
|
1079
|
-
* @remarks
|
|
1080
|
-
* Array type for PriceInfo objects. Used when the API returns a collection of PriceInfo instances.
|
|
1081
|
-
*
|
|
1082
|
-
* @example
|
|
1083
|
-
* ```typescript
|
|
1084
|
-
* const items: PriceInfoArray = await api.getPriceInfos();
|
|
1085
|
-
* ```
|
|
1086
|
-
*
|
|
1087
|
-
* @see {@link PriceInfo} - The individual PriceInfo type definition
|
|
1088
|
-
*/
|
|
1089
|
-
export type PriceInfoArray = PriceInfo[];
|
|
1090
|
-
/**
|
|
1091
|
-
* ValidationError
|
|
1092
|
-
*
|
|
1093
|
-
* @remarks
|
|
1094
|
-
* Array type for ValidationError objects. Used when the API returns a collection of ValidationError instances.
|
|
1095
|
-
*
|
|
1096
|
-
* @example
|
|
1097
|
-
* ```typescript
|
|
1098
|
-
* const items: ValidationErrorArray = await api.getValidationErrors();
|
|
1099
|
-
* ```
|
|
1100
|
-
*
|
|
1101
|
-
* @see {@link ValidationError} - The individual ValidationError type definition
|
|
1102
|
-
*/
|
|
1103
|
-
export type ValidationErrorArray = ValidationError[];
|
|
1104
|
-
/**
|
|
1105
|
-
* LaunchPhaseBase
|
|
1106
|
-
*
|
|
1107
|
-
* @remarks
|
|
1108
|
-
* Array type for LaunchPhaseBase objects. Used when the API returns a collection of LaunchPhaseBase instances.
|
|
1109
|
-
*
|
|
1110
|
-
* @example
|
|
1111
|
-
* ```typescript
|
|
1112
|
-
* const items: LaunchPhaseBaseArray = await api.getLaunchPhaseBases();
|
|
1113
|
-
* ```
|
|
1114
|
-
*
|
|
1115
|
-
* @see {@link LaunchPhaseBase} - The individual LaunchPhaseBase type definition
|
|
1116
|
-
*/
|
|
1117
|
-
export type LaunchPhaseBaseArray = LaunchPhaseBase[];
|
|
1118
|
-
/**
|
|
1119
|
-
* LegalRequirementOperationType
|
|
1120
|
-
*
|
|
1121
|
-
* @remarks
|
|
1122
|
-
* Array type for LegalRequirementOperationType objects. Used when the API returns a collection of LegalRequirementOperationType instances.
|
|
1123
|
-
*
|
|
1124
|
-
* @example
|
|
1125
|
-
* ```typescript
|
|
1126
|
-
* const items: LegalRequirementOperationTypeArray = await api.getLegalRequirementOperationTypes();
|
|
1127
|
-
* ```
|
|
1128
|
-
*
|
|
1129
|
-
* @see {@link LegalRequirementOperationType} - The individual LegalRequirementOperationType type definition
|
|
1130
|
-
*/
|
|
1131
|
-
export type LegalRequirementOperationTypeArray = LegalRequirementOperationType[];
|
|
1132
|
-
/**
|
|
1133
|
-
* LocalPresenceRequirementType
|
|
1134
|
-
*
|
|
1135
|
-
* @remarks
|
|
1136
|
-
* Array type for LocalPresenceRequirementType objects. Used when the API returns a collection of LocalPresenceRequirementType instances.
|
|
1137
|
-
*
|
|
1138
|
-
* @example
|
|
1139
|
-
* ```typescript
|
|
1140
|
-
* const items: LocalPresenceRequirementTypeArray = await api.getLocalPresenceRequirementTypes();
|
|
1141
|
-
* ```
|
|
1142
|
-
*
|
|
1143
|
-
* @see {@link LocalPresenceRequirementType} - The individual LocalPresenceRequirementType type definition
|
|
1144
|
-
*/
|
|
1145
|
-
export type LocalPresenceRequirementTypeArray = LocalPresenceRequirementType[];
|
|
1146
|
-
/**
|
|
1147
|
-
* MemoryFact
|
|
1148
|
-
*
|
|
1149
|
-
* @remarks
|
|
1150
|
-
* Array type for MemoryFact objects. Used when the API returns a collection of MemoryFact instances.
|
|
1151
|
-
*
|
|
1152
|
-
* @example
|
|
1153
|
-
* ```typescript
|
|
1154
|
-
* const items: MemoryFactArray = await api.getMemoryFacts();
|
|
1155
|
-
* ```
|
|
1156
|
-
*
|
|
1157
|
-
* @see {@link MemoryFact} - The individual MemoryFact type definition
|
|
1158
|
-
*/
|
|
1159
|
-
export type MemoryFactArray = MemoryFact[];
|
|
1160
|
-
/**
|
|
1161
|
-
* Message
|
|
1162
|
-
*
|
|
1163
|
-
* @remarks
|
|
1164
|
-
* Array type for Message objects. Used when the API returns a collection of Message instances.
|
|
1165
|
-
*
|
|
1166
|
-
* @example
|
|
1167
|
-
* ```typescript
|
|
1168
|
-
* const items: MessageArray = await api.getMessages();
|
|
1169
|
-
* ```
|
|
1170
|
-
*
|
|
1171
|
-
* @see {@link Message} - The individual Message type definition
|
|
1172
|
-
*/
|
|
1173
|
-
export type MessageArray = Message[];
|
|
1174
|
-
/**
|
|
1175
|
-
* OrganizationAttribute
|
|
1176
|
-
*
|
|
1177
|
-
* @remarks
|
|
1178
|
-
* Array type for OrganizationAttribute objects. Used when the API returns a collection of OrganizationAttribute instances.
|
|
1179
|
-
*
|
|
1180
|
-
* @example
|
|
1181
|
-
* ```typescript
|
|
1182
|
-
* const items: OrganizationAttribute2Array = await api.getOrganizationAttribute2s();
|
|
1183
|
-
* ```
|
|
1184
|
-
*
|
|
1185
|
-
* @see {@link OrganizationAttribute2} - The individual OrganizationAttribute type definition
|
|
1186
|
-
*/
|
|
1187
|
-
export type OrganizationAttribute2Array = OrganizationAttribute2[];
|
|
1188
|
-
/**
|
|
1189
|
-
* User
|
|
1190
|
-
*
|
|
1191
|
-
* @remarks
|
|
1192
|
-
* Array type for User objects. Used when the API returns a collection of User instances.
|
|
1193
|
-
*
|
|
1194
|
-
* @example
|
|
1195
|
-
* ```typescript
|
|
1196
|
-
* const items: UserArray = await api.getUsers();
|
|
1197
|
-
* ```
|
|
1198
|
-
*
|
|
1199
|
-
* @see {@link User} - The individual User type definition
|
|
1200
|
-
*/
|
|
1201
|
-
export type UserArray = User[];
|
|
1202
|
-
/**
|
|
1203
|
-
* OrganizationAttributeCreate
|
|
1204
|
-
*
|
|
1205
|
-
* @remarks
|
|
1206
|
-
* Array type for OrganizationAttributeCreate objects. Used when the API returns a collection of OrganizationAttributeCreate instances.
|
|
1207
|
-
*
|
|
1208
|
-
* @example
|
|
1209
|
-
* ```typescript
|
|
1210
|
-
* const items: OrganizationAttributeCreateArray = await api.getOrganizationAttributeCreates();
|
|
1211
|
-
* ```
|
|
1212
|
-
*
|
|
1213
|
-
* @see {@link OrganizationAttributeCreate} - The individual OrganizationAttributeCreate type definition
|
|
1214
|
-
*/
|
|
1215
|
-
export type OrganizationAttributeCreateArray = OrganizationAttributeCreate[];
|
|
1216
|
-
/**
|
|
1217
|
-
* UserCreate
|
|
1218
|
-
*
|
|
1219
|
-
* @remarks
|
|
1220
|
-
* Array type for UserCreate objects. Used when the API returns a collection of UserCreate instances.
|
|
1221
|
-
*
|
|
1222
|
-
* @example
|
|
1223
|
-
* ```typescript
|
|
1224
|
-
* const items: UserCreateArray = await api.getUserCreates();
|
|
1225
|
-
* ```
|
|
1226
|
-
*
|
|
1227
|
-
* @see {@link UserCreate} - The individual UserCreate type definition
|
|
1228
|
-
*/
|
|
1229
|
-
export type UserCreateArray = UserCreate[];
|
|
1230
|
-
/**
|
|
1231
|
-
* BillingTransactionResponse
|
|
1232
|
-
*
|
|
1233
|
-
* @remarks
|
|
1234
|
-
* Array type for BillingTransactionResponse objects. Used when the API returns a collection of BillingTransactionResponse instances.
|
|
1235
|
-
*
|
|
1236
|
-
* @example
|
|
1237
|
-
* ```typescript
|
|
1238
|
-
* const items: BillingTransactionArray = await api.getBillingTransactions();
|
|
1239
|
-
* ```
|
|
1240
|
-
*
|
|
1241
|
-
* @see {@link BillingTransaction} - The individual BillingTransactionResponse type definition
|
|
1242
|
-
*/
|
|
1243
|
-
export type BillingTransactionArray = BillingTransaction[];
|
|
1244
|
-
/**
|
|
1245
|
-
* ContactAttributeSetResponse
|
|
1246
|
-
*
|
|
1247
|
-
* @remarks
|
|
1248
|
-
* Array type for ContactAttributeSetResponse objects. Used when the API returns a collection of ContactAttributeSetResponse instances.
|
|
1249
|
-
*
|
|
1250
|
-
* @example
|
|
1251
|
-
* ```typescript
|
|
1252
|
-
* const items: ContactAttributeSetArray = await api.getContactAttributeSets();
|
|
1253
|
-
* ```
|
|
1254
|
-
*
|
|
1255
|
-
* @see {@link ContactAttributeSet} - The individual ContactAttributeSetResponse type definition
|
|
1256
|
-
*/
|
|
1257
|
-
export type ContactAttributeSetArray = ContactAttributeSet[];
|
|
1258
|
-
/**
|
|
1259
|
-
* ContactResponse
|
|
1260
|
-
*
|
|
1261
|
-
* @remarks
|
|
1262
|
-
* Array type for ContactResponse objects. Used when the API returns a collection of ContactResponse instances.
|
|
1263
|
-
*
|
|
1264
|
-
* @example
|
|
1265
|
-
* ```typescript
|
|
1266
|
-
* const items: ContactArray = await api.getContacts();
|
|
1267
|
-
* ```
|
|
1268
|
-
*
|
|
1269
|
-
* @see {@link Contact} - The individual ContactResponse type definition
|
|
1270
|
-
*/
|
|
1271
|
-
export type ContactArray = Contact[];
|
|
1272
|
-
/**
|
|
1273
|
-
* DnsZoneResponse
|
|
1274
|
-
*
|
|
1275
|
-
* @remarks
|
|
1276
|
-
* Array type for DnsZoneResponse objects. Used when the API returns a collection of DnsZoneResponse instances.
|
|
1277
|
-
*
|
|
1278
|
-
* @example
|
|
1279
|
-
* ```typescript
|
|
1280
|
-
* const items: DnsZoneArray = await api.getDnsZones();
|
|
1281
|
-
* ```
|
|
1282
|
-
*
|
|
1283
|
-
* @see {@link DnsZone} - The individual DnsZoneResponse type definition
|
|
1284
|
-
*/
|
|
1285
|
-
export type DnsZoneArray = DnsZone[];
|
|
1286
|
-
/**
|
|
1287
|
-
* DomainForwardZone
|
|
1288
|
-
*
|
|
1289
|
-
* @remarks
|
|
1290
|
-
* Array type for DomainForwardZone objects. Used when the API returns a collection of DomainForwardZone instances.
|
|
1291
|
-
*
|
|
1292
|
-
* @example
|
|
1293
|
-
* ```typescript
|
|
1294
|
-
* const items: DomainForwardZoneArray = await api.getDomainForwardZones();
|
|
1295
|
-
* ```
|
|
1296
|
-
*
|
|
1297
|
-
* @see {@link DomainForwardZone} - The individual DomainForwardZone type definition
|
|
1298
|
-
*/
|
|
1299
|
-
export type DomainForwardZoneArray = DomainForwardZone[];
|
|
1300
|
-
/**
|
|
1301
|
-
* DomainResponse
|
|
1302
|
-
*
|
|
1303
|
-
* @remarks
|
|
1304
|
-
* Array type for DomainResponse objects. Used when the API returns a collection of DomainResponse instances.
|
|
1305
|
-
*
|
|
1306
|
-
* @example
|
|
1307
|
-
* ```typescript
|
|
1308
|
-
* const items: DomainArray = await api.getDomains();
|
|
1309
|
-
* ```
|
|
1310
|
-
*
|
|
1311
|
-
* @see {@link Domain} - The individual DomainResponse type definition
|
|
1312
|
-
*/
|
|
1313
|
-
export type DomainArray = Domain[];
|
|
1314
|
-
/**
|
|
1315
|
-
* EmailForwardLog
|
|
1316
|
-
*
|
|
1317
|
-
* @remarks
|
|
1318
|
-
* Array type for EmailForwardLog objects. Used when the API returns a collection of EmailForwardLog instances.
|
|
1319
|
-
*
|
|
1320
|
-
* @example
|
|
1321
|
-
* ```typescript
|
|
1322
|
-
* const items: EmailForwardLogArray = await api.getEmailForwardLogs();
|
|
1323
|
-
* ```
|
|
1324
|
-
*
|
|
1325
|
-
* @see {@link EmailForwardLog} - The individual EmailForwardLog type definition
|
|
1326
|
-
*/
|
|
1327
|
-
export type EmailForwardLogArray = EmailForwardLog[];
|
|
1328
|
-
/**
|
|
1329
|
-
* EmailForwardZone
|
|
1330
|
-
*
|
|
1331
|
-
* @remarks
|
|
1332
|
-
* Array type for EmailForwardZone objects. Used when the API returns a collection of EmailForwardZone instances.
|
|
1333
|
-
*
|
|
1334
|
-
* @example
|
|
1335
|
-
* ```typescript
|
|
1336
|
-
* const items: EmailForwardZoneArray = await api.getEmailForwardZones();
|
|
1337
|
-
* ```
|
|
1338
|
-
*
|
|
1339
|
-
* @see {@link EmailForwardZone} - The individual EmailForwardZone type definition
|
|
1340
|
-
*/
|
|
1341
|
-
export type EmailForwardZoneArray = EmailForwardZone[];
|
|
1342
|
-
/**
|
|
1343
|
-
* EventResponse
|
|
1344
|
-
*
|
|
1345
|
-
* @remarks
|
|
1346
|
-
* Array type for EventResponse objects. Used when the API returns a collection of EventResponse instances.
|
|
1347
|
-
*
|
|
1348
|
-
* @example
|
|
1349
|
-
* ```typescript
|
|
1350
|
-
* const items: EventResponseArray = await api.getEventResponses();
|
|
1351
|
-
* ```
|
|
1352
|
-
*
|
|
1353
|
-
* @see {@link EventResponse} - The individual EventResponse type definition
|
|
1354
|
-
*/
|
|
1355
|
-
export type EventResponseArray = EventResponse[];
|
|
1356
|
-
/**
|
|
1357
|
-
* InvoiceResponse
|
|
1358
|
-
*
|
|
1359
|
-
* @remarks
|
|
1360
|
-
* Array type for InvoiceResponse objects. Used when the API returns a collection of InvoiceResponse instances.
|
|
1361
|
-
*
|
|
1362
|
-
* @example
|
|
1363
|
-
* ```typescript
|
|
1364
|
-
* const items: InvoiceArray = await api.getInvoices();
|
|
1365
|
-
* ```
|
|
1366
|
-
*
|
|
1367
|
-
* @see {@link Invoice} - The individual InvoiceResponse type definition
|
|
1368
|
-
*/
|
|
1369
|
-
export type InvoiceArray = Invoice[];
|
|
1370
|
-
/**
|
|
1371
|
-
* JobBatchMetadataResponse
|
|
1372
|
-
*
|
|
1373
|
-
* @remarks
|
|
1374
|
-
* Array type for JobBatchMetadataResponse objects. Used when the API returns a collection of JobBatchMetadataResponse instances.
|
|
1375
|
-
*
|
|
1376
|
-
* @example
|
|
1377
|
-
* ```typescript
|
|
1378
|
-
* const items: JobBatchMetadataArray = await api.getJobBatchMetadatas();
|
|
1379
|
-
* ```
|
|
1380
|
-
*
|
|
1381
|
-
* @see {@link JobBatchMetadata} - The individual JobBatchMetadataResponse type definition
|
|
1382
|
-
*/
|
|
1383
|
-
export type JobBatchMetadataArray = JobBatchMetadata[];
|
|
1384
|
-
/**
|
|
1385
|
-
* JobResponse
|
|
1386
|
-
*
|
|
1387
|
-
* @remarks
|
|
1388
|
-
* Array type for JobResponse objects. Used when the API returns a collection of JobResponse instances.
|
|
1389
|
-
*
|
|
1390
|
-
* @example
|
|
1391
|
-
* ```typescript
|
|
1392
|
-
* const items: JobArray = await api.getJobs();
|
|
1393
|
-
* ```
|
|
1394
|
-
*
|
|
1395
|
-
* @see {@link Job} - The individual JobResponse type definition
|
|
1396
|
-
*/
|
|
1397
|
-
export type JobArray = Job[];
|
|
1398
|
-
/**
|
|
1399
|
-
* ObjectLog
|
|
1400
|
-
*
|
|
1401
|
-
* @remarks
|
|
1402
|
-
* Array type for ObjectLog objects. Used when the API returns a collection of ObjectLog instances.
|
|
1403
|
-
*
|
|
1404
|
-
* @example
|
|
1405
|
-
* ```typescript
|
|
1406
|
-
* const items: ObjectLogArray = await api.getObjectLogs();
|
|
1407
|
-
* ```
|
|
1408
|
-
*
|
|
1409
|
-
* @see {@link ObjectLog} - The individual ObjectLog type definition
|
|
1410
|
-
*/
|
|
1411
|
-
export type ObjectLogArray = ObjectLog[];
|
|
1412
|
-
/**
|
|
1413
|
-
* Organization
|
|
1414
|
-
*
|
|
1415
|
-
* @remarks
|
|
1416
|
-
* Array type for Organization objects. Used when the API returns a collection of Organization instances.
|
|
1417
|
-
*
|
|
1418
|
-
* @example
|
|
1419
|
-
* ```typescript
|
|
1420
|
-
* const items: OrganizationArray = await api.getOrganizations();
|
|
1421
|
-
* ```
|
|
1422
|
-
*
|
|
1423
|
-
* @see {@link Organization} - The individual Organization type definition
|
|
1424
|
-
*/
|
|
1425
|
-
export type OrganizationArray = Organization[];
|
|
1426
|
-
/**
|
|
1427
|
-
* ParkingResponse
|
|
1428
|
-
*
|
|
1429
|
-
* @remarks
|
|
1430
|
-
* Array type for ParkingResponse objects. Used when the API returns a collection of ParkingResponse instances.
|
|
1431
|
-
*
|
|
1432
|
-
* @example
|
|
1433
|
-
* ```typescript
|
|
1434
|
-
* const items: ParkingArray = await api.getParkings();
|
|
1435
|
-
* ```
|
|
1436
|
-
*
|
|
1437
|
-
* @see {@link Parking} - The individual ParkingResponse type definition
|
|
1438
|
-
*/
|
|
1439
|
-
export type ParkingArray = Parking[];
|
|
1440
|
-
/**
|
|
1441
|
-
* RequestHistory
|
|
1442
|
-
*
|
|
1443
|
-
* @remarks
|
|
1444
|
-
* Array type for RequestHistory objects. Used when the API returns a collection of RequestHistory instances.
|
|
1445
|
-
*
|
|
1446
|
-
* @example
|
|
1447
|
-
* ```typescript
|
|
1448
|
-
* const items: RequestHistoryArray = await api.getRequestHistorys();
|
|
1449
|
-
* ```
|
|
1450
|
-
*
|
|
1451
|
-
* @see {@link RequestHistory} - The individual RequestHistory type definition
|
|
1452
|
-
*/
|
|
1453
|
-
export type RequestHistoryArray = RequestHistory[];
|
|
1454
|
-
/**
|
|
1455
|
-
* TagResponse
|
|
1456
|
-
*
|
|
1457
|
-
* @remarks
|
|
1458
|
-
* Array type for TagResponse objects. Used when the API returns a collection of TagResponse instances.
|
|
1459
|
-
*
|
|
1460
|
-
* @example
|
|
1461
|
-
* ```typescript
|
|
1462
|
-
* const items: TagArray = await api.getTags();
|
|
1463
|
-
* ```
|
|
1464
|
-
*
|
|
1465
|
-
* @see {@link Tag} - The individual TagResponse type definition
|
|
1466
|
-
*/
|
|
1467
|
-
export type TagArray = Tag[];
|
|
1468
|
-
/**
|
|
1469
|
-
* UserPublic
|
|
1470
|
-
*
|
|
1471
|
-
* @remarks
|
|
1472
|
-
* Array type for UserPublic objects. Used when the API returns a collection of UserPublic instances.
|
|
1473
|
-
*
|
|
1474
|
-
* @example
|
|
1475
|
-
* ```typescript
|
|
1476
|
-
* const items: UserPublicArray = await api.getUserPublics();
|
|
1477
|
-
* ```
|
|
1478
|
-
*
|
|
1479
|
-
* @see {@link UserPublic} - The individual UserPublic type definition
|
|
1480
|
-
*/
|
|
1481
|
-
export type UserPublicArray = UserPublic[];
|
|
1482
|
-
/**
|
|
1483
|
-
* ParkingCreateBulkInstance
|
|
1484
|
-
*
|
|
1485
|
-
* @remarks
|
|
1486
|
-
* Array type for ParkingCreateBulkInstance objects. Used when the API returns a collection of ParkingCreateBulkInstance instances.
|
|
1487
|
-
*
|
|
1488
|
-
* @example
|
|
1489
|
-
* ```typescript
|
|
1490
|
-
* const items: ParkingCreateBulkInstanceArray = await api.getParkingCreateBulkInstances();
|
|
1491
|
-
* ```
|
|
1492
|
-
*
|
|
1493
|
-
* @see {@link ParkingCreateBulkInstance} - The individual ParkingCreateBulkInstance type definition
|
|
1494
|
-
*/
|
|
1495
|
-
export type ParkingCreateBulkInstanceArray = ParkingCreateBulkInstance[];
|
|
1496
|
-
/**
|
|
1497
|
-
* ParkingDeleteBulkInstance
|
|
1498
|
-
*
|
|
1499
|
-
* @remarks
|
|
1500
|
-
* Array type for ParkingDeleteBulkInstance objects. Used when the API returns a collection of ParkingDeleteBulkInstance instances.
|
|
1501
|
-
*
|
|
1502
|
-
* @example
|
|
1503
|
-
* ```typescript
|
|
1504
|
-
* const items: ParkingDeleteBulkInstanceArray = await api.getParkingDeleteBulkInstances();
|
|
1505
|
-
* ```
|
|
1506
|
-
*
|
|
1507
|
-
* @see {@link ParkingDeleteBulkInstance} - The individual ParkingDeleteBulkInstance type definition
|
|
1508
|
-
*/
|
|
1509
|
-
export type ParkingDeleteBulkInstanceArray = ParkingDeleteBulkInstance[];
|
|
1510
|
-
/**
|
|
1511
|
-
* ParkingDisableBulkInstance
|
|
1512
|
-
*
|
|
1513
|
-
* @remarks
|
|
1514
|
-
* Array type for ParkingDisableBulkInstance objects. Used when the API returns a collection of ParkingDisableBulkInstance instances.
|
|
1515
|
-
*
|
|
1516
|
-
* @example
|
|
1517
|
-
* ```typescript
|
|
1518
|
-
* const items: ParkingDisableBulkInstanceArray = await api.getParkingDisableBulkInstances();
|
|
1519
|
-
* ```
|
|
1520
|
-
*
|
|
1521
|
-
* @see {@link ParkingDisableBulkInstance} - The individual ParkingDisableBulkInstance type definition
|
|
1522
|
-
*/
|
|
1523
|
-
export type ParkingDisableBulkInstanceArray = ParkingDisableBulkInstance[];
|
|
1524
|
-
/**
|
|
1525
|
-
* ParkingEnableBulkInstance
|
|
1526
|
-
*
|
|
1527
|
-
* @remarks
|
|
1528
|
-
* Array type for ParkingEnableBulkInstance objects. Used when the API returns a collection of ParkingEnableBulkInstance instances.
|
|
1529
|
-
*
|
|
1530
|
-
* @example
|
|
1531
|
-
* ```typescript
|
|
1532
|
-
* const items: ParkingEnableBulkInstanceArray = await api.getParkingEnableBulkInstances();
|
|
1533
|
-
* ```
|
|
1534
|
-
*
|
|
1535
|
-
* @see {@link ParkingEnableBulkInstance} - The individual ParkingEnableBulkInstance type definition
|
|
1536
|
-
*/
|
|
1537
|
-
export type ParkingEnableBulkInstanceArray = ParkingEnableBulkInstance[];
|
|
1538
|
-
/**
|
|
1539
|
-
* Period
|
|
1540
|
-
*
|
|
1541
|
-
* @remarks
|
|
1542
|
-
* Array type for Period objects. Used when the API returns a collection of Period instances.
|
|
1543
|
-
*
|
|
1544
|
-
* @example
|
|
1545
|
-
* ```typescript
|
|
1546
|
-
* const items: PeriodArray = await api.getPeriods();
|
|
1547
|
-
* ```
|
|
1548
|
-
*
|
|
1549
|
-
* @see {@link Period} - The individual Period type definition
|
|
1550
|
-
*/
|
|
1551
|
-
export type PeriodArray = Period[];
|
|
1552
|
-
/**
|
|
1553
|
-
* Permission
|
|
1554
|
-
*
|
|
1555
|
-
* @remarks
|
|
1556
|
-
* Array type for Permission objects. Used when the API returns a collection of Permission instances.
|
|
1557
|
-
*
|
|
1558
|
-
* @example
|
|
1559
|
-
* ```typescript
|
|
1560
|
-
* const items: PermissionArray = await api.getPermissions();
|
|
1561
|
-
* ```
|
|
1562
|
-
*
|
|
1563
|
-
* @see {@link Permission} - The individual Permission type definition
|
|
1564
|
-
*/
|
|
1565
|
-
export type PermissionArray = Permission[];
|
|
1566
|
-
/**
|
|
1567
|
-
* PremiumAffectsType
|
|
1568
|
-
*
|
|
1569
|
-
* @remarks
|
|
1570
|
-
* Array type for PremiumAffectsType objects. Used when the API returns a collection of PremiumAffectsType instances.
|
|
1571
|
-
*
|
|
1572
|
-
* @example
|
|
1573
|
-
* ```typescript
|
|
1574
|
-
* const items: PremiumAffectsTypeArray = await api.getPremiumAffectsTypes();
|
|
1575
|
-
* ```
|
|
1576
|
-
*
|
|
1577
|
-
* @see {@link PremiumAffectsType} - The individual PremiumAffectsType type definition
|
|
1578
|
-
*/
|
|
1579
|
-
export type PremiumAffectsTypeArray = PremiumAffectsType[];
|
|
1580
|
-
/**
|
|
1581
|
-
* PremiumPriceEntryRes. A single premium price entry for a specific action
|
|
1582
|
-
*
|
|
1583
|
-
* @remarks
|
|
1584
|
-
* Array type for PremiumPriceEntryRes objects. Used when the API returns a collection of PremiumPriceEntryRes instances.
|
|
1585
|
-
*
|
|
1586
|
-
* @example
|
|
1587
|
-
* ```typescript
|
|
1588
|
-
* const items: PremiumPriceEntryResArray = await api.getPremiumPriceEntryRess();
|
|
1589
|
-
* ```
|
|
1590
|
-
*
|
|
1591
|
-
* @see {@link PremiumPriceEntryRes} - The individual PremiumPriceEntryRes type definition
|
|
1592
|
-
*/
|
|
1593
|
-
export type PremiumPriceEntryResArray = PremiumPriceEntryRes[];
|
|
1594
|
-
/**
|
|
1595
|
-
* PremiumPricingAction
|
|
1596
|
-
*
|
|
1597
|
-
* @remarks
|
|
1598
|
-
* Array type for PremiumPricingAction objects. Used when the API returns a collection of PremiumPricingAction instances.
|
|
1599
|
-
*
|
|
1600
|
-
* @example
|
|
1601
|
-
* ```typescript
|
|
1602
|
-
* const items: PremiumPricingActionArray = await api.getPremiumPricingActions();
|
|
1603
|
-
* ```
|
|
1604
|
-
*
|
|
1605
|
-
* @see {@link PremiumPricingAction} - The individual PremiumPricingAction type definition
|
|
1606
|
-
*/
|
|
1607
|
-
export type PremiumPricingActionArray = PremiumPricingAction[];
|
|
1608
|
-
/**
|
|
1609
|
-
* PublicReportRes
|
|
1610
|
-
*
|
|
1611
|
-
* @remarks
|
|
1612
|
-
* Array type for PublicReportRes objects. Used when the API returns a collection of PublicReportRes instances.
|
|
1613
|
-
*
|
|
1614
|
-
* @example
|
|
1615
|
-
* ```typescript
|
|
1616
|
-
* const items: PublicReportResArray = await api.getPublicReportRess();
|
|
1617
|
-
* ```
|
|
1618
|
-
*
|
|
1619
|
-
* @see {@link PublicReportRes} - The individual PublicReportRes type definition
|
|
1620
|
-
*/
|
|
1621
|
-
export type PublicReportResArray = PublicReportRes[];
|
|
1622
|
-
/**
|
|
1623
|
-
* Relation
|
|
1624
|
-
*
|
|
1625
|
-
* @remarks
|
|
1626
|
-
* Array type for Relation objects. Used when the API returns a collection of Relation instances.
|
|
1627
|
-
*
|
|
1628
|
-
* @example
|
|
1629
|
-
* ```typescript
|
|
1630
|
-
* const items: RelationArray = await api.getRelations();
|
|
1631
|
-
* ```
|
|
1632
|
-
*
|
|
1633
|
-
* @see {@link Relation} - The individual Relation type definition
|
|
1634
|
-
*/
|
|
1635
|
-
export type RelationArray = Relation[];
|
|
1636
|
-
/**
|
|
1637
|
-
* LegalRequirementBase
|
|
1638
|
-
*
|
|
1639
|
-
* @remarks
|
|
1640
|
-
* Array type for LegalRequirementBase objects. Used when the API returns a collection of LegalRequirementBase instances.
|
|
1641
|
-
*
|
|
1642
|
-
* @example
|
|
1643
|
-
* ```typescript
|
|
1644
|
-
* const items: LegalRequirementBaseArray = await api.getLegalRequirementBases();
|
|
1645
|
-
* ```
|
|
1646
|
-
*
|
|
1647
|
-
* @see {@link LegalRequirementBase} - The individual LegalRequirementBase type definition
|
|
1648
|
-
*/
|
|
1649
|
-
export type LegalRequirementBaseArray = LegalRequirementBase[];
|
|
1650
|
-
/**
|
|
1651
|
-
* TldBase
|
|
1652
|
-
*
|
|
1653
|
-
* @remarks
|
|
1654
|
-
* Array type for TldBase objects. Used when the API returns a collection of TldBase instances.
|
|
1655
|
-
*
|
|
1656
|
-
* @example
|
|
1657
|
-
* ```typescript
|
|
1658
|
-
* const items: TldBaseArray = await api.getTldBases();
|
|
1659
|
-
* ```
|
|
1660
|
-
*
|
|
1661
|
-
* @see {@link TldBase} - The individual TldBase type definition
|
|
1662
|
-
*/
|
|
1663
|
-
export type TldBaseArray = TldBase[];
|
|
1664
|
-
/**
|
|
1665
|
-
* TmClassDesc. Nice Classification description (classDescType in RFC 9361)
|
|
1666
|
-
*
|
|
1667
|
-
* @remarks
|
|
1668
|
-
* Array type for TmClassDesc objects. Used when the API returns a collection of TmClassDesc instances.
|
|
1669
|
-
*
|
|
1670
|
-
* @example
|
|
1671
|
-
* ```typescript
|
|
1672
|
-
* const items: TmClassDescArray = await api.getTmClassDescs();
|
|
1673
|
-
* ```
|
|
1674
|
-
*
|
|
1675
|
-
* @see {@link TmClassDesc} - The individual TmClassDesc type definition
|
|
1676
|
-
*/
|
|
1677
|
-
export type TmClassDescArray = TmClassDesc[];
|
|
1678
|
-
/**
|
|
1679
|
-
* TmContact. Contact / representative of the mark (contactType in RFC 9361)
|
|
1680
|
-
*
|
|
1681
|
-
* @remarks
|
|
1682
|
-
* Array type for TmContact objects. Used when the API returns a collection of TmContact instances.
|
|
1683
|
-
*
|
|
1684
|
-
* @example
|
|
1685
|
-
* ```typescript
|
|
1686
|
-
* const items: TmContactArray = await api.getTmContacts();
|
|
1687
|
-
* ```
|
|
1688
|
-
*
|
|
1689
|
-
* @see {@link TmContact} - The individual TmContact type definition
|
|
1690
|
-
*/
|
|
1691
|
-
export type TmContactArray = TmContact[];
|
|
1692
|
-
/**
|
|
1693
|
-
* TmHolder. Holder of the mark (holderType in RFC 9361). name or org must be set.
|
|
1694
|
-
*
|
|
1695
|
-
* @remarks
|
|
1696
|
-
* Array type for TmHolder objects. Used when the API returns a collection of TmHolder instances.
|
|
1697
|
-
*
|
|
1698
|
-
* @example
|
|
1699
|
-
* ```typescript
|
|
1700
|
-
* const items: TmHolderArray = await api.getTmHolders();
|
|
1701
|
-
* ```
|
|
1702
|
-
*
|
|
1703
|
-
* @see {@link TmHolder} - The individual TmHolder type definition
|
|
1704
|
-
*/
|
|
1705
|
-
export type TmHolderArray = TmHolder[];
|
|
1706
|
-
/**
|
|
1707
|
-
* TmCourt. Court resolution reference (courtType in RFC 9361)
|
|
1708
|
-
*
|
|
1709
|
-
* @remarks
|
|
1710
|
-
* Array type for TmCourt objects. Used when the API returns a collection of TmCourt instances.
|
|
1711
|
-
*
|
|
1712
|
-
* @example
|
|
1713
|
-
* ```typescript
|
|
1714
|
-
* const items: TmCourtArray = await api.getTmCourts();
|
|
1715
|
-
* ```
|
|
1716
|
-
*
|
|
1717
|
-
* @see {@link TmCourt} - The individual TmCourt type definition
|
|
1718
|
-
*/
|
|
1719
|
-
export type TmCourtArray = TmCourt[];
|
|
1720
|
-
/**
|
|
1721
|
-
* TmUdrp. UDRP case reference (udrpType in RFC 9361)
|
|
1722
|
-
*
|
|
1723
|
-
* @remarks
|
|
1724
|
-
* Array type for TmUdrp objects. Used when the API returns a collection of TmUdrp instances.
|
|
1725
|
-
*
|
|
1726
|
-
* @example
|
|
1727
|
-
* ```typescript
|
|
1728
|
-
* const items: TmUdrpArray = await api.getTmUdrps();
|
|
1729
|
-
* ```
|
|
1730
|
-
*
|
|
1731
|
-
* @see {@link TmUdrp} - The individual TmUdrp type definition
|
|
1732
|
-
*/
|
|
1733
|
-
export type TmUdrpArray = TmUdrp[];
|
|
1734
|
-
/**
|
|
1735
|
-
* PostTransferRequirements
|
|
1736
|
-
*
|
|
1737
|
-
* @remarks
|
|
1738
|
-
* Array type for PostTransferRequirements objects. Used when the API returns a collection of PostTransferRequirements instances.
|
|
1739
|
-
*
|
|
1740
|
-
* @example
|
|
1741
|
-
* ```typescript
|
|
1742
|
-
* const items: PostTransferRequirementsArray = await api.getPostTransferRequirementss();
|
|
1743
|
-
* ```
|
|
1744
|
-
*
|
|
1745
|
-
* @see {@link PostTransferRequirements} - The individual PostTransferRequirements type definition
|
|
1746
|
-
*/
|
|
1747
|
-
export type PostTransferRequirementsArray = PostTransferRequirements[];
|
|
1748
|
-
/**
|
|
1749
|
-
* UserAttributeBase
|
|
1750
|
-
*
|
|
1751
|
-
* @remarks
|
|
1752
|
-
* Array type for UserAttributeBase objects. Used when the API returns a collection of UserAttributeBase instances.
|
|
1753
|
-
*
|
|
1754
|
-
* @example
|
|
1755
|
-
* ```typescript
|
|
1756
|
-
* const items: UserAttributeBaseArray = await api.getUserAttributeBases();
|
|
1757
|
-
* ```
|
|
1758
|
-
*
|
|
1759
|
-
* @see {@link UserAttributeBase} - The individual UserAttributeBase type definition
|
|
1760
|
-
*/
|
|
1761
|
-
export type UserAttributeBaseArray = UserAttributeBase[];
|
|
1762
|
-
/**
|
|
1763
|
-
* DomainAvailability
|
|
1764
|
-
*
|
|
1765
|
-
* @remarks
|
|
1766
|
-
* Array type for DomainAvailability objects. Used when the API returns a collection of DomainAvailability instances.
|
|
1767
|
-
*
|
|
1768
|
-
* @example
|
|
1769
|
-
* ```typescript
|
|
1770
|
-
* const items: DomainAvailabilityArray = await api.getDomainAvailabilitys();
|
|
1771
|
-
* ```
|
|
1772
|
-
*
|
|
1773
|
-
* @see {@link DomainAvailability} - The individual DomainAvailability type definition
|
|
1774
|
-
*/
|
|
1775
|
-
export type DomainAvailabilityArray = DomainAvailability[];
|