@randock/nameshift-api-client 0.0.163 → 0.0.164

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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @randock/nameshift-api-client@0.0.163
1
+ ## @randock/nameshift-api-client@0.0.164
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install @randock/nameshift-api-client@0.0.163 --save
39
+ npm install @randock/nameshift-api-client@0.0.164 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -44,4 +44,4 @@ _unPublished (not recommended):_
44
44
  ```
45
45
  npm install PATH_TO_GENERATED_PACKAGE --save
46
46
  ```
47
- e5242ec7e02013ac46f0ed06abdccebb4d758e44ea4a513868b455cb461f11c16df26877ec1ed6727b6b043c705f5a78
47
+ e60622b43437f6ef48871a82b9c524718c3aeaac0105cc12289daa94c9a91c8d7fd497e1bb4911ec6fc4559c4fb9aa5a
@@ -16,6 +16,12 @@ import type { BuyerDomainTransferListItemDomainDto } from './BuyerDomainTransfer
16
16
  * @interface BuyerDomainTransferListItemDto
17
17
  */
18
18
  export interface BuyerDomainTransferListItemDto {
19
+ /**
20
+ * The buyer order ID
21
+ * @type {string}
22
+ * @memberof BuyerDomainTransferListItemDto
23
+ */
24
+ orderId: string;
19
25
  /**
20
26
  * The buyer order status
21
27
  * @type {string}
@@ -34,12 +40,6 @@ export interface BuyerDomainTransferListItemDto {
34
40
  * @memberof BuyerDomainTransferListItemDto
35
41
  */
36
42
  requirements: object;
37
- /**
38
- * The buyer order ID
39
- * @type {object}
40
- * @memberof BuyerDomainTransferListItemDto
41
- */
42
- orderId: object;
43
43
  /**
44
44
  * The buyer domain transfer ID
45
45
  * @type {object}
@@ -42,14 +42,14 @@ exports.BuyerDomainTransferListItemDtoDomainTransferStatusEnum = {
42
42
  * Check if a given object implements the BuyerDomainTransferListItemDto interface.
43
43
  */
44
44
  function instanceOfBuyerDomainTransferListItemDto(value) {
45
+ if (!('orderId' in value) || value['orderId'] === undefined)
46
+ return false;
45
47
  if (!('invoiceStatus' in value) || value['invoiceStatus'] === undefined)
46
48
  return false;
47
49
  if (!('domainTransferStatus' in value) || value['domainTransferStatus'] === undefined)
48
50
  return false;
49
51
  if (!('requirements' in value) || value['requirements'] === undefined)
50
52
  return false;
51
- if (!('orderId' in value) || value['orderId'] === undefined)
52
- return false;
53
53
  if (!('domainTransferId' in value) || value['domainTransferId'] === undefined)
54
54
  return false;
55
55
  if (!('domain' in value) || value['domain'] === undefined)
@@ -66,10 +66,10 @@ function BuyerDomainTransferListItemDtoFromJSONTyped(json, ignoreDiscriminator)
66
66
  return json;
67
67
  }
68
68
  return {
69
+ 'orderId': json['orderId'],
69
70
  'invoiceStatus': json['invoiceStatus'],
70
71
  'domainTransferStatus': json['domainTransferStatus'],
71
72
  'requirements': json['requirements'],
72
- 'orderId': json['orderId'],
73
73
  'domainTransferId': json['domainTransferId'],
74
74
  'domain': (0, BuyerDomainTransferListItemDomainDto_1.BuyerDomainTransferListItemDomainDtoFromJSON)(json['domain']),
75
75
  'createdAt': (new Date(json['createdAt'])),
@@ -84,10 +84,10 @@ function BuyerDomainTransferListItemDtoToJSONTyped(value, ignoreDiscriminator) {
84
84
  return value;
85
85
  }
86
86
  return {
87
+ 'orderId': value['orderId'],
87
88
  'invoiceStatus': value['invoiceStatus'],
88
89
  'domainTransferStatus': value['domainTransferStatus'],
89
90
  'requirements': value['requirements'],
90
- 'orderId': value['orderId'],
91
91
  'domainTransferId': value['domainTransferId'],
92
92
  'domain': (0, BuyerDomainTransferListItemDomainDto_1.BuyerDomainTransferListItemDomainDtoToJSON)(value['domain']),
93
93
  'createdAt': ((value['createdAt']).toISOString()),
@@ -22,17 +22,17 @@ import type { DomainTransferDetailsDomainDto } from './DomainTransferDetailsDoma
22
22
  */
23
23
  export interface DomainTransferDetailsDto {
24
24
  /**
25
- * The domain transfer requirements with its satisfied status
26
- * @type {object}
25
+ * The domain transfer ID
26
+ * @type {string}
27
27
  * @memberof DomainTransferDetailsDto
28
28
  */
29
- requirements: object;
29
+ id: string;
30
30
  /**
31
- * The domain transfer ID
31
+ * The domain transfer requirements with its satisfied status
32
32
  * @type {object}
33
33
  * @memberof DomainTransferDetailsDto
34
34
  */
35
- id: object;
35
+ requirements: object;
36
36
  /**
37
37
  * The domain of transfer
38
38
  * @type {DomainTransferDetailsDomainDto}
@@ -49,10 +49,10 @@ exports.DomainTransferDetailsDtoStatusSellerEnum = {
49
49
  * Check if a given object implements the DomainTransferDetailsDto interface.
50
50
  */
51
51
  function instanceOfDomainTransferDetailsDto(value) {
52
- if (!('requirements' in value) || value['requirements'] === undefined)
53
- return false;
54
52
  if (!('id' in value) || value['id'] === undefined)
55
53
  return false;
54
+ if (!('requirements' in value) || value['requirements'] === undefined)
55
+ return false;
56
56
  if (!('domain' in value) || value['domain'] === undefined)
57
57
  return false;
58
58
  if (!('order' in value) || value['order'] === undefined)
@@ -81,8 +81,8 @@ function DomainTransferDetailsDtoFromJSONTyped(json, ignoreDiscriminator) {
81
81
  return json;
82
82
  }
83
83
  return {
84
- 'requirements': json['requirements'],
85
84
  'id': json['id'],
85
+ 'requirements': json['requirements'],
86
86
  'domain': (0, DomainTransferDetailsDomainDto_1.DomainTransferDetailsDomainDtoFromJSON)(json['domain']),
87
87
  'order': (0, DomainTransferDetailsOrderDto_1.DomainTransferDetailsOrderDtoFromJSON)(json['order']),
88
88
  'status': json['status'],
@@ -103,8 +103,8 @@ function DomainTransferDetailsDtoToJSONTyped(value, ignoreDiscriminator) {
103
103
  return value;
104
104
  }
105
105
  return {
106
- 'requirements': value['requirements'],
107
106
  'id': value['id'],
107
+ 'requirements': value['requirements'],
108
108
  'domain': (0, DomainTransferDetailsDomainDto_1.DomainTransferDetailsDomainDtoToJSON)(value['domain']),
109
109
  'order': (0, DomainTransferDetailsOrderDto_1.DomainTransferDetailsOrderDtoToJSON)(value['order']),
110
110
  'status': value['status'],
@@ -20,10 +20,10 @@ import type { DomainTransferAgentDto } from './DomainTransferAgentDto';
20
20
  export interface DomainTransferDto {
21
21
  /**
22
22
  * The domain transfer ID
23
- * @type {object}
23
+ * @type {string}
24
24
  * @memberof DomainTransferDto
25
25
  */
26
- id: object;
26
+ id: string;
27
27
  /**
28
28
  * The domain of transfer
29
29
  * @type {DomainTransferDomainDto}
@@ -18,17 +18,17 @@ import type { SellerDomainTransferAuthCodeDto } from './SellerDomainTransferAuth
18
18
  */
19
19
  export interface SellerDomainTransferDto {
20
20
  /**
21
- * The domain transfer requirements with its satisfied status
22
- * @type {object}
21
+ * The domain transfer ID
22
+ * @type {string}
23
23
  * @memberof SellerDomainTransferDto
24
24
  */
25
- requirements: object;
25
+ id: string;
26
26
  /**
27
- * The domain transfer ID
27
+ * The domain transfer requirements with its satisfied status
28
28
  * @type {object}
29
29
  * @memberof SellerDomainTransferDto
30
30
  */
31
- id: object;
31
+ requirements: object;
32
32
  /**
33
33
  * The domain of transfer
34
34
  * @type {SellerDomainTransferDomainDto}
@@ -35,10 +35,10 @@ exports.SellerDomainTransferDtoStatusEnum = {
35
35
  * Check if a given object implements the SellerDomainTransferDto interface.
36
36
  */
37
37
  function instanceOfSellerDomainTransferDto(value) {
38
- if (!('requirements' in value) || value['requirements'] === undefined)
39
- return false;
40
38
  if (!('id' in value) || value['id'] === undefined)
41
39
  return false;
40
+ if (!('requirements' in value) || value['requirements'] === undefined)
41
+ return false;
42
42
  if (!('domain' in value) || value['domain'] === undefined)
43
43
  return false;
44
44
  if (!('status' in value) || value['status'] === undefined)
@@ -57,8 +57,8 @@ function SellerDomainTransferDtoFromJSONTyped(json, ignoreDiscriminator) {
57
57
  return json;
58
58
  }
59
59
  return {
60
- 'requirements': json['requirements'],
61
60
  'id': json['id'],
61
+ 'requirements': json['requirements'],
62
62
  'domain': (0, SellerDomainTransferDomainDto_1.SellerDomainTransferDomainDtoFromJSON)(json['domain']),
63
63
  'status': json['status'],
64
64
  'authCode': (0, SellerDomainTransferAuthCodeDto_1.SellerDomainTransferAuthCodeDtoFromJSON)(json['authCode']),
@@ -74,8 +74,8 @@ function SellerDomainTransferDtoToJSONTyped(value, ignoreDiscriminator) {
74
74
  return value;
75
75
  }
76
76
  return {
77
- 'requirements': value['requirements'],
78
77
  'id': value['id'],
78
+ 'requirements': value['requirements'],
79
79
  'domain': (0, SellerDomainTransferDomainDto_1.SellerDomainTransferDomainDtoToJSON)(value['domain']),
80
80
  'status': value['status'],
81
81
  'authCode': (0, SellerDomainTransferAuthCodeDto_1.SellerDomainTransferAuthCodeDtoToJSON)(value['authCode']),
@@ -17,17 +17,17 @@ import type { SellerDomainTransferListItemDomainDto } from './SellerDomainTransf
17
17
  */
18
18
  export interface SellerDomainTransferListItemDto {
19
19
  /**
20
- * The domain transfer requirements with its satisfied status
21
- * @type {object}
20
+ * The domain transfer ID
21
+ * @type {string}
22
22
  * @memberof SellerDomainTransferListItemDto
23
23
  */
24
- requirements: object;
24
+ id: string;
25
25
  /**
26
- * The domain transfer ID
26
+ * The domain transfer requirements with its satisfied status
27
27
  * @type {object}
28
28
  * @memberof SellerDomainTransferListItemDto
29
29
  */
30
- id: object;
30
+ requirements: object;
31
31
  /**
32
32
  * The domain of transfer
33
33
  * @type {SellerDomainTransferListItemDomainDto}
@@ -34,10 +34,10 @@ exports.SellerDomainTransferListItemDtoStatusEnum = {
34
34
  * Check if a given object implements the SellerDomainTransferListItemDto interface.
35
35
  */
36
36
  function instanceOfSellerDomainTransferListItemDto(value) {
37
- if (!('requirements' in value) || value['requirements'] === undefined)
38
- return false;
39
37
  if (!('id' in value) || value['id'] === undefined)
40
38
  return false;
39
+ if (!('requirements' in value) || value['requirements'] === undefined)
40
+ return false;
41
41
  if (!('domain' in value) || value['domain'] === undefined)
42
42
  return false;
43
43
  if (!('status' in value) || value['status'] === undefined)
@@ -54,8 +54,8 @@ function SellerDomainTransferListItemDtoFromJSONTyped(json, ignoreDiscriminator)
54
54
  return json;
55
55
  }
56
56
  return {
57
- 'requirements': json['requirements'],
58
57
  'id': json['id'],
58
+ 'requirements': json['requirements'],
59
59
  'domain': (0, SellerDomainTransferListItemDomainDto_1.SellerDomainTransferListItemDomainDtoFromJSON)(json['domain']),
60
60
  'status': json['status'],
61
61
  'createdAt': (new Date(json['createdAt'])),
@@ -70,8 +70,8 @@ function SellerDomainTransferListItemDtoToJSONTyped(value, ignoreDiscriminator)
70
70
  return value;
71
71
  }
72
72
  return {
73
- 'requirements': value['requirements'],
74
73
  'id': value['id'],
74
+ 'requirements': value['requirements'],
75
75
  'domain': (0, SellerDomainTransferListItemDomainDto_1.SellerDomainTransferListItemDomainDtoToJSON)(value['domain']),
76
76
  'status': value['status'],
77
77
  'createdAt': ((value['createdAt']).toISOString()),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@randock/nameshift-api-client",
3
- "version": "0.0.163",
3
+ "version": "0.0.164",
4
4
  "description": "OpenAPI client for @randock/nameshift-api-client",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -27,6 +27,12 @@ import {
27
27
  * @interface BuyerDomainTransferListItemDto
28
28
  */
29
29
  export interface BuyerDomainTransferListItemDto {
30
+ /**
31
+ * The buyer order ID
32
+ * @type {string}
33
+ * @memberof BuyerDomainTransferListItemDto
34
+ */
35
+ orderId: string;
30
36
  /**
31
37
  * The buyer order status
32
38
  * @type {string}
@@ -45,12 +51,6 @@ export interface BuyerDomainTransferListItemDto {
45
51
  * @memberof BuyerDomainTransferListItemDto
46
52
  */
47
53
  requirements: object;
48
- /**
49
- * The buyer order ID
50
- * @type {object}
51
- * @memberof BuyerDomainTransferListItemDto
52
- */
53
- orderId: object;
54
54
  /**
55
55
  * The buyer domain transfer ID
56
56
  * @type {object}
@@ -99,10 +99,10 @@ export type BuyerDomainTransferListItemDtoDomainTransferStatusEnum = typeof Buye
99
99
  * Check if a given object implements the BuyerDomainTransferListItemDto interface.
100
100
  */
101
101
  export function instanceOfBuyerDomainTransferListItemDto(value: object): value is BuyerDomainTransferListItemDto {
102
+ if (!('orderId' in value) || value['orderId'] === undefined) return false;
102
103
  if (!('invoiceStatus' in value) || value['invoiceStatus'] === undefined) return false;
103
104
  if (!('domainTransferStatus' in value) || value['domainTransferStatus'] === undefined) return false;
104
105
  if (!('requirements' in value) || value['requirements'] === undefined) return false;
105
- if (!('orderId' in value) || value['orderId'] === undefined) return false;
106
106
  if (!('domainTransferId' in value) || value['domainTransferId'] === undefined) return false;
107
107
  if (!('domain' in value) || value['domain'] === undefined) return false;
108
108
  if (!('createdAt' in value) || value['createdAt'] === undefined) return false;
@@ -119,10 +119,10 @@ export function BuyerDomainTransferListItemDtoFromJSONTyped(json: any, ignoreDis
119
119
  }
120
120
  return {
121
121
 
122
+ 'orderId': json['orderId'],
122
123
  'invoiceStatus': json['invoiceStatus'],
123
124
  'domainTransferStatus': json['domainTransferStatus'],
124
125
  'requirements': json['requirements'],
125
- 'orderId': json['orderId'],
126
126
  'domainTransferId': json['domainTransferId'],
127
127
  'domain': BuyerDomainTransferListItemDomainDtoFromJSON(json['domain']),
128
128
  'createdAt': (new Date(json['createdAt'])),
@@ -140,10 +140,10 @@ export function BuyerDomainTransferListItemDtoFromJSONTyped(json: any, ignoreDis
140
140
 
141
141
  return {
142
142
 
143
+ 'orderId': value['orderId'],
143
144
  'invoiceStatus': value['invoiceStatus'],
144
145
  'domainTransferStatus': value['domainTransferStatus'],
145
146
  'requirements': value['requirements'],
146
- 'orderId': value['orderId'],
147
147
  'domainTransferId': value['domainTransferId'],
148
148
  'domain': BuyerDomainTransferListItemDomainDtoToJSON(value['domain']),
149
149
  'createdAt': ((value['createdAt']).toISOString()),
@@ -63,17 +63,17 @@ import {
63
63
  */
64
64
  export interface DomainTransferDetailsDto {
65
65
  /**
66
- * The domain transfer requirements with its satisfied status
67
- * @type {object}
66
+ * The domain transfer ID
67
+ * @type {string}
68
68
  * @memberof DomainTransferDetailsDto
69
69
  */
70
- requirements: object;
70
+ id: string;
71
71
  /**
72
- * The domain transfer ID
72
+ * The domain transfer requirements with its satisfied status
73
73
  * @type {object}
74
74
  * @memberof DomainTransferDetailsDto
75
75
  */
76
- id: object;
76
+ requirements: object;
77
77
  /**
78
78
  * The domain of transfer
79
79
  * @type {DomainTransferDetailsDomainDto}
@@ -160,8 +160,8 @@ export type DomainTransferDetailsDtoStatusSellerEnum = typeof DomainTransferDeta
160
160
  * Check if a given object implements the DomainTransferDetailsDto interface.
161
161
  */
162
162
  export function instanceOfDomainTransferDetailsDto(value: object): value is DomainTransferDetailsDto {
163
- if (!('requirements' in value) || value['requirements'] === undefined) return false;
164
163
  if (!('id' in value) || value['id'] === undefined) return false;
164
+ if (!('requirements' in value) || value['requirements'] === undefined) return false;
165
165
  if (!('domain' in value) || value['domain'] === undefined) return false;
166
166
  if (!('order' in value) || value['order'] === undefined) return false;
167
167
  if (!('status' in value) || value['status'] === undefined) return false;
@@ -184,8 +184,8 @@ export function DomainTransferDetailsDtoFromJSONTyped(json: any, ignoreDiscrimin
184
184
  }
185
185
  return {
186
186
 
187
- 'requirements': json['requirements'],
188
187
  'id': json['id'],
188
+ 'requirements': json['requirements'],
189
189
  'domain': DomainTransferDetailsDomainDtoFromJSON(json['domain']),
190
190
  'order': DomainTransferDetailsOrderDtoFromJSON(json['order']),
191
191
  'status': json['status'],
@@ -209,8 +209,8 @@ export function DomainTransferDetailsDtoFromJSONTyped(json: any, ignoreDiscrimin
209
209
 
210
210
  return {
211
211
 
212
- 'requirements': value['requirements'],
213
212
  'id': value['id'],
213
+ 'requirements': value['requirements'],
214
214
  'domain': DomainTransferDetailsDomainDtoToJSON(value['domain']),
215
215
  'order': DomainTransferDetailsOrderDtoToJSON(value['order']),
216
216
  'status': value['status'],
@@ -43,10 +43,10 @@ import {
43
43
  export interface DomainTransferDto {
44
44
  /**
45
45
  * The domain transfer ID
46
- * @type {object}
46
+ * @type {string}
47
47
  * @memberof DomainTransferDto
48
48
  */
49
- id: object;
49
+ id: string;
50
50
  /**
51
51
  * The domain of transfer
52
52
  * @type {DomainTransferDomainDto}
@@ -35,17 +35,17 @@ import {
35
35
  */
36
36
  export interface SellerDomainTransferDto {
37
37
  /**
38
- * The domain transfer requirements with its satisfied status
39
- * @type {object}
38
+ * The domain transfer ID
39
+ * @type {string}
40
40
  * @memberof SellerDomainTransferDto
41
41
  */
42
- requirements: object;
42
+ id: string;
43
43
  /**
44
- * The domain transfer ID
44
+ * The domain transfer requirements with its satisfied status
45
45
  * @type {object}
46
46
  * @memberof SellerDomainTransferDto
47
47
  */
48
- id: object;
48
+ requirements: object;
49
49
  /**
50
50
  * The domain of transfer
51
51
  * @type {SellerDomainTransferDomainDto}
@@ -90,8 +90,8 @@ export type SellerDomainTransferDtoStatusEnum = typeof SellerDomainTransferDtoSt
90
90
  * Check if a given object implements the SellerDomainTransferDto interface.
91
91
  */
92
92
  export function instanceOfSellerDomainTransferDto(value: object): value is SellerDomainTransferDto {
93
- if (!('requirements' in value) || value['requirements'] === undefined) return false;
94
93
  if (!('id' in value) || value['id'] === undefined) return false;
94
+ if (!('requirements' in value) || value['requirements'] === undefined) return false;
95
95
  if (!('domain' in value) || value['domain'] === undefined) return false;
96
96
  if (!('status' in value) || value['status'] === undefined) return false;
97
97
  if (!('authCode' in value) || value['authCode'] === undefined) return false;
@@ -109,8 +109,8 @@ export function SellerDomainTransferDtoFromJSONTyped(json: any, ignoreDiscrimina
109
109
  }
110
110
  return {
111
111
 
112
- 'requirements': json['requirements'],
113
112
  'id': json['id'],
113
+ 'requirements': json['requirements'],
114
114
  'domain': SellerDomainTransferDomainDtoFromJSON(json['domain']),
115
115
  'status': json['status'],
116
116
  'authCode': SellerDomainTransferAuthCodeDtoFromJSON(json['authCode']),
@@ -129,8 +129,8 @@ export function SellerDomainTransferDtoFromJSONTyped(json: any, ignoreDiscrimina
129
129
 
130
130
  return {
131
131
 
132
- 'requirements': value['requirements'],
133
132
  'id': value['id'],
133
+ 'requirements': value['requirements'],
134
134
  'domain': SellerDomainTransferDomainDtoToJSON(value['domain']),
135
135
  'status': value['status'],
136
136
  'authCode': SellerDomainTransferAuthCodeDtoToJSON(value['authCode']),
@@ -28,17 +28,17 @@ import {
28
28
  */
29
29
  export interface SellerDomainTransferListItemDto {
30
30
  /**
31
- * The domain transfer requirements with its satisfied status
32
- * @type {object}
31
+ * The domain transfer ID
32
+ * @type {string}
33
33
  * @memberof SellerDomainTransferListItemDto
34
34
  */
35
- requirements: object;
35
+ id: string;
36
36
  /**
37
- * The domain transfer ID
37
+ * The domain transfer requirements with its satisfied status
38
38
  * @type {object}
39
39
  * @memberof SellerDomainTransferListItemDto
40
40
  */
41
- id: object;
41
+ requirements: object;
42
42
  /**
43
43
  * The domain of transfer
44
44
  * @type {SellerDomainTransferListItemDomainDto}
@@ -77,8 +77,8 @@ export type SellerDomainTransferListItemDtoStatusEnum = typeof SellerDomainTrans
77
77
  * Check if a given object implements the SellerDomainTransferListItemDto interface.
78
78
  */
79
79
  export function instanceOfSellerDomainTransferListItemDto(value: object): value is SellerDomainTransferListItemDto {
80
- if (!('requirements' in value) || value['requirements'] === undefined) return false;
81
80
  if (!('id' in value) || value['id'] === undefined) return false;
81
+ if (!('requirements' in value) || value['requirements'] === undefined) return false;
82
82
  if (!('domain' in value) || value['domain'] === undefined) return false;
83
83
  if (!('status' in value) || value['status'] === undefined) return false;
84
84
  if (!('createdAt' in value) || value['createdAt'] === undefined) return false;
@@ -95,8 +95,8 @@ export function SellerDomainTransferListItemDtoFromJSONTyped(json: any, ignoreDi
95
95
  }
96
96
  return {
97
97
 
98
- 'requirements': json['requirements'],
99
98
  'id': json['id'],
99
+ 'requirements': json['requirements'],
100
100
  'domain': SellerDomainTransferListItemDomainDtoFromJSON(json['domain']),
101
101
  'status': json['status'],
102
102
  'createdAt': (new Date(json['createdAt'])),
@@ -114,8 +114,8 @@ export function SellerDomainTransferListItemDtoFromJSONTyped(json: any, ignoreDi
114
114
 
115
115
  return {
116
116
 
117
- 'requirements': value['requirements'],
118
117
  'id': value['id'],
118
+ 'requirements': value['requirements'],
119
119
  'domain': SellerDomainTransferListItemDomainDtoToJSON(value['domain']),
120
120
  'status': value['status'],
121
121
  'createdAt': ((value['createdAt']).toISOString()),