@randock/nameshift-api-client 0.0.80 → 0.0.81

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.
@@ -1,70 +0,0 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
- /**
4
- * Nameshift
5
- * Nameshift API
6
- *
7
- * The version of the OpenAPI document: 1.0
8
- *
9
- *
10
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
- * https://openapi-generator.tech
12
- * Do not edit the class manually.
13
- */
14
-
15
- import { mapValues } from '../runtime';
16
- /**
17
- *
18
- * @export
19
- * @interface DomainTransferDetailsBuyerConfirmationDto
20
- */
21
- export interface DomainTransferDetailsBuyerConfirmationDto {
22
- /**
23
- * The domain transfer buyer confirmation status
24
- * @type {boolean}
25
- * @memberof DomainTransferDetailsBuyerConfirmationDto
26
- */
27
- confirmed: boolean;
28
- /**
29
- * The domain transfer buyer confirmation date
30
- * @type {Date}
31
- * @memberof DomainTransferDetailsBuyerConfirmationDto
32
- */
33
- updatedAt: Date;
34
- }
35
-
36
- /**
37
- * Check if a given object implements the DomainTransferDetailsBuyerConfirmationDto interface.
38
- */
39
- export function instanceOfDomainTransferDetailsBuyerConfirmationDto(value: object): value is DomainTransferDetailsBuyerConfirmationDto {
40
- if (!('confirmed' in value) || value['confirmed'] === undefined) return false;
41
- if (!('updatedAt' in value) || value['updatedAt'] === undefined) return false;
42
- return true;
43
- }
44
-
45
- export function DomainTransferDetailsBuyerConfirmationDtoFromJSON(json: any): DomainTransferDetailsBuyerConfirmationDto {
46
- return DomainTransferDetailsBuyerConfirmationDtoFromJSONTyped(json, false);
47
- }
48
-
49
- export function DomainTransferDetailsBuyerConfirmationDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): DomainTransferDetailsBuyerConfirmationDto {
50
- if (json == null) {
51
- return json;
52
- }
53
- return {
54
-
55
- 'confirmed': json['confirmed'],
56
- 'updatedAt': (new Date(json['updatedAt'])),
57
- };
58
- }
59
-
60
- export function DomainTransferDetailsBuyerConfirmationDtoToJSON(value?: DomainTransferDetailsBuyerConfirmationDto | null): any {
61
- if (value == null) {
62
- return value;
63
- }
64
- return {
65
-
66
- 'confirmed': value['confirmed'],
67
- 'updatedAt': ((value['updatedAt']).toISOString()),
68
- };
69
- }
70
-
@@ -1,70 +0,0 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
- /**
4
- * Nameshift
5
- * Nameshift API
6
- *
7
- * The version of the OpenAPI document: 1.0
8
- *
9
- *
10
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
- * https://openapi-generator.tech
12
- * Do not edit the class manually.
13
- */
14
-
15
- import { mapValues } from '../runtime';
16
- /**
17
- * The domain transfer buyer confirmation status
18
- * @export
19
- * @interface DomainTransferDetailsDtoBuyerConfirmation
20
- */
21
- export interface DomainTransferDetailsDtoBuyerConfirmation {
22
- /**
23
- * The domain transfer buyer confirmation status
24
- * @type {boolean}
25
- * @memberof DomainTransferDetailsDtoBuyerConfirmation
26
- */
27
- confirmed: boolean;
28
- /**
29
- * The domain transfer buyer confirmation date
30
- * @type {Date}
31
- * @memberof DomainTransferDetailsDtoBuyerConfirmation
32
- */
33
- updatedAt: Date;
34
- }
35
-
36
- /**
37
- * Check if a given object implements the DomainTransferDetailsDtoBuyerConfirmation interface.
38
- */
39
- export function instanceOfDomainTransferDetailsDtoBuyerConfirmation(value: object): value is DomainTransferDetailsDtoBuyerConfirmation {
40
- if (!('confirmed' in value) || value['confirmed'] === undefined) return false;
41
- if (!('updatedAt' in value) || value['updatedAt'] === undefined) return false;
42
- return true;
43
- }
44
-
45
- export function DomainTransferDetailsDtoBuyerConfirmationFromJSON(json: any): DomainTransferDetailsDtoBuyerConfirmation {
46
- return DomainTransferDetailsDtoBuyerConfirmationFromJSONTyped(json, false);
47
- }
48
-
49
- export function DomainTransferDetailsDtoBuyerConfirmationFromJSONTyped(json: any, ignoreDiscriminator: boolean): DomainTransferDetailsDtoBuyerConfirmation {
50
- if (json == null) {
51
- return json;
52
- }
53
- return {
54
-
55
- 'confirmed': json['confirmed'],
56
- 'updatedAt': (new Date(json['updatedAt'])),
57
- };
58
- }
59
-
60
- export function DomainTransferDetailsDtoBuyerConfirmationToJSON(value?: DomainTransferDetailsDtoBuyerConfirmation | null): any {
61
- if (value == null) {
62
- return value;
63
- }
64
- return {
65
-
66
- 'confirmed': value['confirmed'],
67
- 'updatedAt': ((value['updatedAt']).toISOString()),
68
- };
69
- }
70
-