@ignos/api-client 20260130.0.13938 → 20260203.0.13955
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/lib/ignosportal-api.d.ts +80 -10
- package/lib/ignosportal-api.js +195 -54
- package/package.json +1 -1
- package/src/ignosportal-api.ts +280 -69
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -16564,7 +16564,7 @@ export interface IAmcMechanicalSpecificationResultDto {
|
|
|
16564
16564
|
}
|
|
16565
16565
|
export declare class AmcFerriteSpecificationResultDto implements IAmcFerriteSpecificationResultDto {
|
|
16566
16566
|
ferriteContent?: AmcSpecificationResultLineDto | null;
|
|
16567
|
-
measurementMethod
|
|
16567
|
+
measurementMethod?: AmcSpecificationFerriteMeasurementMethodResultLineDto | null;
|
|
16568
16568
|
constructor(data?: IAmcFerriteSpecificationResultDto);
|
|
16569
16569
|
init(_data?: any): void;
|
|
16570
16570
|
static fromJS(data: any): AmcFerriteSpecificationResultDto;
|
|
@@ -16572,32 +16572,102 @@ export declare class AmcFerriteSpecificationResultDto implements IAmcFerriteSpec
|
|
|
16572
16572
|
}
|
|
16573
16573
|
export interface IAmcFerriteSpecificationResultDto {
|
|
16574
16574
|
ferriteContent?: AmcSpecificationResultLineDto | null;
|
|
16575
|
-
measurementMethod
|
|
16575
|
+
measurementMethod?: AmcSpecificationFerriteMeasurementMethodResultLineDto | null;
|
|
16576
|
+
}
|
|
16577
|
+
export declare class AmcSpecificationFerriteMeasurementMethodResultLineDto implements IAmcSpecificationFerriteMeasurementMethodResultLineDto {
|
|
16578
|
+
readValues?: AmcFerriteMeasurementMethodDto[] | null;
|
|
16579
|
+
status: AmcSpecificationResultLineStatusDto;
|
|
16580
|
+
override?: AmcResultOverrideDto | null;
|
|
16581
|
+
constructor(data?: IAmcSpecificationFerriteMeasurementMethodResultLineDto);
|
|
16582
|
+
init(_data?: any): void;
|
|
16583
|
+
static fromJS(data: any): AmcSpecificationFerriteMeasurementMethodResultLineDto;
|
|
16584
|
+
toJSON(data?: any): any;
|
|
16585
|
+
}
|
|
16586
|
+
export interface IAmcSpecificationFerriteMeasurementMethodResultLineDto {
|
|
16587
|
+
readValues?: AmcFerriteMeasurementMethodDto[] | null;
|
|
16588
|
+
status: AmcSpecificationResultLineStatusDto;
|
|
16589
|
+
override?: AmcResultOverrideDto | null;
|
|
16576
16590
|
}
|
|
16577
16591
|
export type AmcFerriteMeasurementMethodDto = "Diushdf" | "Oidjrgr" | "Fjioerw";
|
|
16578
16592
|
export declare class AmcHeatTreatmentSpecificationResultDto implements IAmcHeatTreatmentSpecificationResultDto {
|
|
16579
|
-
heatTreatmentType
|
|
16593
|
+
heatTreatmentType?: AmcSpecificationHeatTreatmentTypeResultLineDto | null;
|
|
16580
16594
|
treatmentTemperature?: AmcSpecificationResultLineDto | null;
|
|
16581
16595
|
holdingTime?: AmcSpecificationResultLineDto | null;
|
|
16582
|
-
coolingMethod
|
|
16583
|
-
treatedCondition
|
|
16584
|
-
verificationMethod
|
|
16596
|
+
coolingMethod?: AmcSpecificationHeatCoolingMethodResultLineDto | null;
|
|
16597
|
+
treatedCondition?: AmcSpecificationHeatTreatedConditionResultLineDto | null;
|
|
16598
|
+
verificationMethod?: AmcSpecificationHeatVerificationMethodResultLineDto | null;
|
|
16585
16599
|
constructor(data?: IAmcHeatTreatmentSpecificationResultDto);
|
|
16586
16600
|
init(_data?: any): void;
|
|
16587
16601
|
static fromJS(data: any): AmcHeatTreatmentSpecificationResultDto;
|
|
16588
16602
|
toJSON(data?: any): any;
|
|
16589
16603
|
}
|
|
16590
16604
|
export interface IAmcHeatTreatmentSpecificationResultDto {
|
|
16591
|
-
heatTreatmentType
|
|
16605
|
+
heatTreatmentType?: AmcSpecificationHeatTreatmentTypeResultLineDto | null;
|
|
16592
16606
|
treatmentTemperature?: AmcSpecificationResultLineDto | null;
|
|
16593
16607
|
holdingTime?: AmcSpecificationResultLineDto | null;
|
|
16594
|
-
coolingMethod
|
|
16595
|
-
treatedCondition
|
|
16596
|
-
verificationMethod
|
|
16608
|
+
coolingMethod?: AmcSpecificationHeatCoolingMethodResultLineDto | null;
|
|
16609
|
+
treatedCondition?: AmcSpecificationHeatTreatedConditionResultLineDto | null;
|
|
16610
|
+
verificationMethod?: AmcSpecificationHeatVerificationMethodResultLineDto | null;
|
|
16611
|
+
}
|
|
16612
|
+
export declare class AmcSpecificationHeatTreatmentTypeResultLineDto implements IAmcSpecificationHeatTreatmentTypeResultLineDto {
|
|
16613
|
+
readValues?: AmcHeatTreatmentTypeDto[] | null;
|
|
16614
|
+
status: AmcSpecificationResultLineStatusDto;
|
|
16615
|
+
override?: AmcResultOverrideDto | null;
|
|
16616
|
+
constructor(data?: IAmcSpecificationHeatTreatmentTypeResultLineDto);
|
|
16617
|
+
init(_data?: any): void;
|
|
16618
|
+
static fromJS(data: any): AmcSpecificationHeatTreatmentTypeResultLineDto;
|
|
16619
|
+
toJSON(data?: any): any;
|
|
16620
|
+
}
|
|
16621
|
+
export interface IAmcSpecificationHeatTreatmentTypeResultLineDto {
|
|
16622
|
+
readValues?: AmcHeatTreatmentTypeDto[] | null;
|
|
16623
|
+
status: AmcSpecificationResultLineStatusDto;
|
|
16624
|
+
override?: AmcResultOverrideDto | null;
|
|
16597
16625
|
}
|
|
16598
16626
|
export type AmcHeatTreatmentTypeDto = "Sdjifo" | "Oijsdfi";
|
|
16627
|
+
export declare class AmcSpecificationHeatCoolingMethodResultLineDto implements IAmcSpecificationHeatCoolingMethodResultLineDto {
|
|
16628
|
+
readValues?: AmcHeatCoolingMethodDto[] | null;
|
|
16629
|
+
status: AmcSpecificationResultLineStatusDto;
|
|
16630
|
+
override?: AmcResultOverrideDto | null;
|
|
16631
|
+
constructor(data?: IAmcSpecificationHeatCoolingMethodResultLineDto);
|
|
16632
|
+
init(_data?: any): void;
|
|
16633
|
+
static fromJS(data: any): AmcSpecificationHeatCoolingMethodResultLineDto;
|
|
16634
|
+
toJSON(data?: any): any;
|
|
16635
|
+
}
|
|
16636
|
+
export interface IAmcSpecificationHeatCoolingMethodResultLineDto {
|
|
16637
|
+
readValues?: AmcHeatCoolingMethodDto[] | null;
|
|
16638
|
+
status: AmcSpecificationResultLineStatusDto;
|
|
16639
|
+
override?: AmcResultOverrideDto | null;
|
|
16640
|
+
}
|
|
16599
16641
|
export type AmcHeatCoolingMethodDto = "Asdfjoi" | "Fsdifjd";
|
|
16642
|
+
export declare class AmcSpecificationHeatTreatedConditionResultLineDto implements IAmcSpecificationHeatTreatedConditionResultLineDto {
|
|
16643
|
+
readValues?: AmcHeatTreatedConditionDto[] | null;
|
|
16644
|
+
status: AmcSpecificationResultLineStatusDto;
|
|
16645
|
+
override?: AmcResultOverrideDto | null;
|
|
16646
|
+
constructor(data?: IAmcSpecificationHeatTreatedConditionResultLineDto);
|
|
16647
|
+
init(_data?: any): void;
|
|
16648
|
+
static fromJS(data: any): AmcSpecificationHeatTreatedConditionResultLineDto;
|
|
16649
|
+
toJSON(data?: any): any;
|
|
16650
|
+
}
|
|
16651
|
+
export interface IAmcSpecificationHeatTreatedConditionResultLineDto {
|
|
16652
|
+
readValues?: AmcHeatTreatedConditionDto[] | null;
|
|
16653
|
+
status: AmcSpecificationResultLineStatusDto;
|
|
16654
|
+
override?: AmcResultOverrideDto | null;
|
|
16655
|
+
}
|
|
16600
16656
|
export type AmcHeatTreatedConditionDto = "Fsdijfo" | "Oisjdfi";
|
|
16657
|
+
export declare class AmcSpecificationHeatVerificationMethodResultLineDto implements IAmcSpecificationHeatVerificationMethodResultLineDto {
|
|
16658
|
+
readValues?: AmcHeatVerificationMethodDto[] | null;
|
|
16659
|
+
status: AmcSpecificationResultLineStatusDto;
|
|
16660
|
+
override?: AmcResultOverrideDto | null;
|
|
16661
|
+
constructor(data?: IAmcSpecificationHeatVerificationMethodResultLineDto);
|
|
16662
|
+
init(_data?: any): void;
|
|
16663
|
+
static fromJS(data: any): AmcSpecificationHeatVerificationMethodResultLineDto;
|
|
16664
|
+
toJSON(data?: any): any;
|
|
16665
|
+
}
|
|
16666
|
+
export interface IAmcSpecificationHeatVerificationMethodResultLineDto {
|
|
16667
|
+
readValues?: AmcHeatVerificationMethodDto[] | null;
|
|
16668
|
+
status: AmcSpecificationResultLineStatusDto;
|
|
16669
|
+
override?: AmcResultOverrideDto | null;
|
|
16670
|
+
}
|
|
16601
16671
|
export type AmcHeatVerificationMethodDto = "Fisjsdfdfo" | "Oisjdegrfo";
|
|
16602
16672
|
export declare class ProcessAmcCheckRequestDto implements IProcessAmcCheckRequestDto {
|
|
16603
16673
|
files: UploadFileDto[];
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -54594,18 +54594,11 @@ export class AmcFerriteSpecificationResultDto {
|
|
|
54594
54594
|
this[property] = data[property];
|
|
54595
54595
|
}
|
|
54596
54596
|
}
|
|
54597
|
-
if (!data) {
|
|
54598
|
-
this.measurementMethod = [];
|
|
54599
|
-
}
|
|
54600
54597
|
}
|
|
54601
54598
|
init(_data) {
|
|
54602
54599
|
if (_data) {
|
|
54603
54600
|
this.ferriteContent = _data["ferriteContent"] ? AmcSpecificationResultLineDto.fromJS(_data["ferriteContent"]) : undefined;
|
|
54604
|
-
|
|
54605
|
-
this.measurementMethod = [];
|
|
54606
|
-
for (let item of _data["measurementMethod"])
|
|
54607
|
-
this.measurementMethod.push(item);
|
|
54608
|
-
}
|
|
54601
|
+
this.measurementMethod = _data["measurementMethod"] ? AmcSpecificationFerriteMeasurementMethodResultLineDto.fromJS(_data["measurementMethod"]) : undefined;
|
|
54609
54602
|
}
|
|
54610
54603
|
}
|
|
54611
54604
|
static fromJS(data) {
|
|
@@ -54617,11 +54610,45 @@ export class AmcFerriteSpecificationResultDto {
|
|
|
54617
54610
|
toJSON(data) {
|
|
54618
54611
|
data = typeof data === 'object' ? data : {};
|
|
54619
54612
|
data["ferriteContent"] = this.ferriteContent ? this.ferriteContent.toJSON() : undefined;
|
|
54620
|
-
|
|
54621
|
-
|
|
54622
|
-
|
|
54623
|
-
|
|
54613
|
+
data["measurementMethod"] = this.measurementMethod ? this.measurementMethod.toJSON() : undefined;
|
|
54614
|
+
return data;
|
|
54615
|
+
}
|
|
54616
|
+
}
|
|
54617
|
+
export class AmcSpecificationFerriteMeasurementMethodResultLineDto {
|
|
54618
|
+
constructor(data) {
|
|
54619
|
+
if (data) {
|
|
54620
|
+
for (var property in data) {
|
|
54621
|
+
if (data.hasOwnProperty(property))
|
|
54622
|
+
this[property] = data[property];
|
|
54623
|
+
}
|
|
54624
|
+
}
|
|
54625
|
+
}
|
|
54626
|
+
init(_data) {
|
|
54627
|
+
if (_data) {
|
|
54628
|
+
if (Array.isArray(_data["readValues"])) {
|
|
54629
|
+
this.readValues = [];
|
|
54630
|
+
for (let item of _data["readValues"])
|
|
54631
|
+
this.readValues.push(item);
|
|
54632
|
+
}
|
|
54633
|
+
this.status = _data["status"];
|
|
54634
|
+
this.override = _data["override"] ? AmcResultOverrideDto.fromJS(_data["override"]) : undefined;
|
|
54635
|
+
}
|
|
54636
|
+
}
|
|
54637
|
+
static fromJS(data) {
|
|
54638
|
+
data = typeof data === 'object' ? data : {};
|
|
54639
|
+
let result = new AmcSpecificationFerriteMeasurementMethodResultLineDto();
|
|
54640
|
+
result.init(data);
|
|
54641
|
+
return result;
|
|
54642
|
+
}
|
|
54643
|
+
toJSON(data) {
|
|
54644
|
+
data = typeof data === 'object' ? data : {};
|
|
54645
|
+
if (Array.isArray(this.readValues)) {
|
|
54646
|
+
data["readValues"] = [];
|
|
54647
|
+
for (let item of this.readValues)
|
|
54648
|
+
data["readValues"].push(item);
|
|
54624
54649
|
}
|
|
54650
|
+
data["status"] = this.status;
|
|
54651
|
+
data["override"] = this.override ? this.override.toJSON() : undefined;
|
|
54625
54652
|
return data;
|
|
54626
54653
|
}
|
|
54627
54654
|
}
|
|
@@ -54633,69 +54660,183 @@ export class AmcHeatTreatmentSpecificationResultDto {
|
|
|
54633
54660
|
this[property] = data[property];
|
|
54634
54661
|
}
|
|
54635
54662
|
}
|
|
54636
|
-
if (!data) {
|
|
54637
|
-
this.heatTreatmentType = [];
|
|
54638
|
-
this.coolingMethod = [];
|
|
54639
|
-
this.treatedCondition = [];
|
|
54640
|
-
this.verificationMethod = [];
|
|
54641
|
-
}
|
|
54642
54663
|
}
|
|
54643
54664
|
init(_data) {
|
|
54644
54665
|
if (_data) {
|
|
54645
|
-
|
|
54646
|
-
this.heatTreatmentType = [];
|
|
54647
|
-
for (let item of _data["heatTreatmentType"])
|
|
54648
|
-
this.heatTreatmentType.push(item);
|
|
54649
|
-
}
|
|
54666
|
+
this.heatTreatmentType = _data["heatTreatmentType"] ? AmcSpecificationHeatTreatmentTypeResultLineDto.fromJS(_data["heatTreatmentType"]) : undefined;
|
|
54650
54667
|
this.treatmentTemperature = _data["treatmentTemperature"] ? AmcSpecificationResultLineDto.fromJS(_data["treatmentTemperature"]) : undefined;
|
|
54651
54668
|
this.holdingTime = _data["holdingTime"] ? AmcSpecificationResultLineDto.fromJS(_data["holdingTime"]) : undefined;
|
|
54652
|
-
|
|
54653
|
-
|
|
54654
|
-
|
|
54655
|
-
|
|
54669
|
+
this.coolingMethod = _data["coolingMethod"] ? AmcSpecificationHeatCoolingMethodResultLineDto.fromJS(_data["coolingMethod"]) : undefined;
|
|
54670
|
+
this.treatedCondition = _data["treatedCondition"] ? AmcSpecificationHeatTreatedConditionResultLineDto.fromJS(_data["treatedCondition"]) : undefined;
|
|
54671
|
+
this.verificationMethod = _data["verificationMethod"] ? AmcSpecificationHeatVerificationMethodResultLineDto.fromJS(_data["verificationMethod"]) : undefined;
|
|
54672
|
+
}
|
|
54673
|
+
}
|
|
54674
|
+
static fromJS(data) {
|
|
54675
|
+
data = typeof data === 'object' ? data : {};
|
|
54676
|
+
let result = new AmcHeatTreatmentSpecificationResultDto();
|
|
54677
|
+
result.init(data);
|
|
54678
|
+
return result;
|
|
54679
|
+
}
|
|
54680
|
+
toJSON(data) {
|
|
54681
|
+
data = typeof data === 'object' ? data : {};
|
|
54682
|
+
data["heatTreatmentType"] = this.heatTreatmentType ? this.heatTreatmentType.toJSON() : undefined;
|
|
54683
|
+
data["treatmentTemperature"] = this.treatmentTemperature ? this.treatmentTemperature.toJSON() : undefined;
|
|
54684
|
+
data["holdingTime"] = this.holdingTime ? this.holdingTime.toJSON() : undefined;
|
|
54685
|
+
data["coolingMethod"] = this.coolingMethod ? this.coolingMethod.toJSON() : undefined;
|
|
54686
|
+
data["treatedCondition"] = this.treatedCondition ? this.treatedCondition.toJSON() : undefined;
|
|
54687
|
+
data["verificationMethod"] = this.verificationMethod ? this.verificationMethod.toJSON() : undefined;
|
|
54688
|
+
return data;
|
|
54689
|
+
}
|
|
54690
|
+
}
|
|
54691
|
+
export class AmcSpecificationHeatTreatmentTypeResultLineDto {
|
|
54692
|
+
constructor(data) {
|
|
54693
|
+
if (data) {
|
|
54694
|
+
for (var property in data) {
|
|
54695
|
+
if (data.hasOwnProperty(property))
|
|
54696
|
+
this[property] = data[property];
|
|
54656
54697
|
}
|
|
54657
|
-
|
|
54658
|
-
|
|
54659
|
-
|
|
54660
|
-
|
|
54698
|
+
}
|
|
54699
|
+
}
|
|
54700
|
+
init(_data) {
|
|
54701
|
+
if (_data) {
|
|
54702
|
+
if (Array.isArray(_data["readValues"])) {
|
|
54703
|
+
this.readValues = [];
|
|
54704
|
+
for (let item of _data["readValues"])
|
|
54705
|
+
this.readValues.push(item);
|
|
54661
54706
|
}
|
|
54662
|
-
|
|
54663
|
-
|
|
54664
|
-
|
|
54665
|
-
|
|
54707
|
+
this.status = _data["status"];
|
|
54708
|
+
this.override = _data["override"] ? AmcResultOverrideDto.fromJS(_data["override"]) : undefined;
|
|
54709
|
+
}
|
|
54710
|
+
}
|
|
54711
|
+
static fromJS(data) {
|
|
54712
|
+
data = typeof data === 'object' ? data : {};
|
|
54713
|
+
let result = new AmcSpecificationHeatTreatmentTypeResultLineDto();
|
|
54714
|
+
result.init(data);
|
|
54715
|
+
return result;
|
|
54716
|
+
}
|
|
54717
|
+
toJSON(data) {
|
|
54718
|
+
data = typeof data === 'object' ? data : {};
|
|
54719
|
+
if (Array.isArray(this.readValues)) {
|
|
54720
|
+
data["readValues"] = [];
|
|
54721
|
+
for (let item of this.readValues)
|
|
54722
|
+
data["readValues"].push(item);
|
|
54723
|
+
}
|
|
54724
|
+
data["status"] = this.status;
|
|
54725
|
+
data["override"] = this.override ? this.override.toJSON() : undefined;
|
|
54726
|
+
return data;
|
|
54727
|
+
}
|
|
54728
|
+
}
|
|
54729
|
+
export class AmcSpecificationHeatCoolingMethodResultLineDto {
|
|
54730
|
+
constructor(data) {
|
|
54731
|
+
if (data) {
|
|
54732
|
+
for (var property in data) {
|
|
54733
|
+
if (data.hasOwnProperty(property))
|
|
54734
|
+
this[property] = data[property];
|
|
54735
|
+
}
|
|
54736
|
+
}
|
|
54737
|
+
}
|
|
54738
|
+
init(_data) {
|
|
54739
|
+
if (_data) {
|
|
54740
|
+
if (Array.isArray(_data["readValues"])) {
|
|
54741
|
+
this.readValues = [];
|
|
54742
|
+
for (let item of _data["readValues"])
|
|
54743
|
+
this.readValues.push(item);
|
|
54666
54744
|
}
|
|
54745
|
+
this.status = _data["status"];
|
|
54746
|
+
this.override = _data["override"] ? AmcResultOverrideDto.fromJS(_data["override"]) : undefined;
|
|
54667
54747
|
}
|
|
54668
54748
|
}
|
|
54669
54749
|
static fromJS(data) {
|
|
54670
54750
|
data = typeof data === 'object' ? data : {};
|
|
54671
|
-
let result = new
|
|
54751
|
+
let result = new AmcSpecificationHeatCoolingMethodResultLineDto();
|
|
54672
54752
|
result.init(data);
|
|
54673
54753
|
return result;
|
|
54674
54754
|
}
|
|
54675
54755
|
toJSON(data) {
|
|
54676
54756
|
data = typeof data === 'object' ? data : {};
|
|
54677
|
-
if (Array.isArray(this.
|
|
54678
|
-
data["
|
|
54679
|
-
for (let item of this.
|
|
54680
|
-
data["
|
|
54757
|
+
if (Array.isArray(this.readValues)) {
|
|
54758
|
+
data["readValues"] = [];
|
|
54759
|
+
for (let item of this.readValues)
|
|
54760
|
+
data["readValues"].push(item);
|
|
54681
54761
|
}
|
|
54682
|
-
data["
|
|
54683
|
-
data["
|
|
54684
|
-
|
|
54685
|
-
|
|
54686
|
-
|
|
54687
|
-
|
|
54762
|
+
data["status"] = this.status;
|
|
54763
|
+
data["override"] = this.override ? this.override.toJSON() : undefined;
|
|
54764
|
+
return data;
|
|
54765
|
+
}
|
|
54766
|
+
}
|
|
54767
|
+
export class AmcSpecificationHeatTreatedConditionResultLineDto {
|
|
54768
|
+
constructor(data) {
|
|
54769
|
+
if (data) {
|
|
54770
|
+
for (var property in data) {
|
|
54771
|
+
if (data.hasOwnProperty(property))
|
|
54772
|
+
this[property] = data[property];
|
|
54773
|
+
}
|
|
54688
54774
|
}
|
|
54689
|
-
|
|
54690
|
-
|
|
54691
|
-
|
|
54692
|
-
|
|
54775
|
+
}
|
|
54776
|
+
init(_data) {
|
|
54777
|
+
if (_data) {
|
|
54778
|
+
if (Array.isArray(_data["readValues"])) {
|
|
54779
|
+
this.readValues = [];
|
|
54780
|
+
for (let item of _data["readValues"])
|
|
54781
|
+
this.readValues.push(item);
|
|
54782
|
+
}
|
|
54783
|
+
this.status = _data["status"];
|
|
54784
|
+
this.override = _data["override"] ? AmcResultOverrideDto.fromJS(_data["override"]) : undefined;
|
|
54693
54785
|
}
|
|
54694
|
-
|
|
54695
|
-
|
|
54696
|
-
|
|
54697
|
-
|
|
54786
|
+
}
|
|
54787
|
+
static fromJS(data) {
|
|
54788
|
+
data = typeof data === 'object' ? data : {};
|
|
54789
|
+
let result = new AmcSpecificationHeatTreatedConditionResultLineDto();
|
|
54790
|
+
result.init(data);
|
|
54791
|
+
return result;
|
|
54792
|
+
}
|
|
54793
|
+
toJSON(data) {
|
|
54794
|
+
data = typeof data === 'object' ? data : {};
|
|
54795
|
+
if (Array.isArray(this.readValues)) {
|
|
54796
|
+
data["readValues"] = [];
|
|
54797
|
+
for (let item of this.readValues)
|
|
54798
|
+
data["readValues"].push(item);
|
|
54698
54799
|
}
|
|
54800
|
+
data["status"] = this.status;
|
|
54801
|
+
data["override"] = this.override ? this.override.toJSON() : undefined;
|
|
54802
|
+
return data;
|
|
54803
|
+
}
|
|
54804
|
+
}
|
|
54805
|
+
export class AmcSpecificationHeatVerificationMethodResultLineDto {
|
|
54806
|
+
constructor(data) {
|
|
54807
|
+
if (data) {
|
|
54808
|
+
for (var property in data) {
|
|
54809
|
+
if (data.hasOwnProperty(property))
|
|
54810
|
+
this[property] = data[property];
|
|
54811
|
+
}
|
|
54812
|
+
}
|
|
54813
|
+
}
|
|
54814
|
+
init(_data) {
|
|
54815
|
+
if (_data) {
|
|
54816
|
+
if (Array.isArray(_data["readValues"])) {
|
|
54817
|
+
this.readValues = [];
|
|
54818
|
+
for (let item of _data["readValues"])
|
|
54819
|
+
this.readValues.push(item);
|
|
54820
|
+
}
|
|
54821
|
+
this.status = _data["status"];
|
|
54822
|
+
this.override = _data["override"] ? AmcResultOverrideDto.fromJS(_data["override"]) : undefined;
|
|
54823
|
+
}
|
|
54824
|
+
}
|
|
54825
|
+
static fromJS(data) {
|
|
54826
|
+
data = typeof data === 'object' ? data : {};
|
|
54827
|
+
let result = new AmcSpecificationHeatVerificationMethodResultLineDto();
|
|
54828
|
+
result.init(data);
|
|
54829
|
+
return result;
|
|
54830
|
+
}
|
|
54831
|
+
toJSON(data) {
|
|
54832
|
+
data = typeof data === 'object' ? data : {};
|
|
54833
|
+
if (Array.isArray(this.readValues)) {
|
|
54834
|
+
data["readValues"] = [];
|
|
54835
|
+
for (let item of this.readValues)
|
|
54836
|
+
data["readValues"].push(item);
|
|
54837
|
+
}
|
|
54838
|
+
data["status"] = this.status;
|
|
54839
|
+
data["override"] = this.override ? this.override.toJSON() : undefined;
|
|
54699
54840
|
return data;
|
|
54700
54841
|
}
|
|
54701
54842
|
}
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -69737,7 +69737,7 @@ export interface IAmcMechanicalSpecificationResultDto {
|
|
|
69737
69737
|
|
|
69738
69738
|
export class AmcFerriteSpecificationResultDto implements IAmcFerriteSpecificationResultDto {
|
|
69739
69739
|
ferriteContent?: AmcSpecificationResultLineDto | null;
|
|
69740
|
-
measurementMethod
|
|
69740
|
+
measurementMethod?: AmcSpecificationFerriteMeasurementMethodResultLineDto | null;
|
|
69741
69741
|
|
|
69742
69742
|
constructor(data?: IAmcFerriteSpecificationResultDto) {
|
|
69743
69743
|
if (data) {
|
|
@@ -69746,19 +69746,12 @@ export class AmcFerriteSpecificationResultDto implements IAmcFerriteSpecificatio
|
|
|
69746
69746
|
(this as any)[property] = (data as any)[property];
|
|
69747
69747
|
}
|
|
69748
69748
|
}
|
|
69749
|
-
if (!data) {
|
|
69750
|
-
this.measurementMethod = [];
|
|
69751
|
-
}
|
|
69752
69749
|
}
|
|
69753
69750
|
|
|
69754
69751
|
init(_data?: any) {
|
|
69755
69752
|
if (_data) {
|
|
69756
69753
|
this.ferriteContent = _data["ferriteContent"] ? AmcSpecificationResultLineDto.fromJS(_data["ferriteContent"]) : undefined as any;
|
|
69757
|
-
|
|
69758
|
-
this.measurementMethod = [] as any;
|
|
69759
|
-
for (let item of _data["measurementMethod"])
|
|
69760
|
-
this.measurementMethod!.push(item);
|
|
69761
|
-
}
|
|
69754
|
+
this.measurementMethod = _data["measurementMethod"] ? AmcSpecificationFerriteMeasurementMethodResultLineDto.fromJS(_data["measurementMethod"]) : undefined as any;
|
|
69762
69755
|
}
|
|
69763
69756
|
}
|
|
69764
69757
|
|
|
@@ -69772,29 +69765,77 @@ export class AmcFerriteSpecificationResultDto implements IAmcFerriteSpecificatio
|
|
|
69772
69765
|
toJSON(data?: any) {
|
|
69773
69766
|
data = typeof data === 'object' ? data : {};
|
|
69774
69767
|
data["ferriteContent"] = this.ferriteContent ? this.ferriteContent.toJSON() : undefined as any;
|
|
69775
|
-
|
|
69776
|
-
data["measurementMethod"] = [];
|
|
69777
|
-
for (let item of this.measurementMethod)
|
|
69778
|
-
data["measurementMethod"].push(item);
|
|
69779
|
-
}
|
|
69768
|
+
data["measurementMethod"] = this.measurementMethod ? this.measurementMethod.toJSON() : undefined as any;
|
|
69780
69769
|
return data;
|
|
69781
69770
|
}
|
|
69782
69771
|
}
|
|
69783
69772
|
|
|
69784
69773
|
export interface IAmcFerriteSpecificationResultDto {
|
|
69785
69774
|
ferriteContent?: AmcSpecificationResultLineDto | null;
|
|
69786
|
-
measurementMethod
|
|
69775
|
+
measurementMethod?: AmcSpecificationFerriteMeasurementMethodResultLineDto | null;
|
|
69776
|
+
}
|
|
69777
|
+
|
|
69778
|
+
export class AmcSpecificationFerriteMeasurementMethodResultLineDto implements IAmcSpecificationFerriteMeasurementMethodResultLineDto {
|
|
69779
|
+
readValues?: AmcFerriteMeasurementMethodDto[] | null;
|
|
69780
|
+
status!: AmcSpecificationResultLineStatusDto;
|
|
69781
|
+
override?: AmcResultOverrideDto | null;
|
|
69782
|
+
|
|
69783
|
+
constructor(data?: IAmcSpecificationFerriteMeasurementMethodResultLineDto) {
|
|
69784
|
+
if (data) {
|
|
69785
|
+
for (var property in data) {
|
|
69786
|
+
if (data.hasOwnProperty(property))
|
|
69787
|
+
(this as any)[property] = (data as any)[property];
|
|
69788
|
+
}
|
|
69789
|
+
}
|
|
69790
|
+
}
|
|
69791
|
+
|
|
69792
|
+
init(_data?: any) {
|
|
69793
|
+
if (_data) {
|
|
69794
|
+
if (Array.isArray(_data["readValues"])) {
|
|
69795
|
+
this.readValues = [] as any;
|
|
69796
|
+
for (let item of _data["readValues"])
|
|
69797
|
+
this.readValues!.push(item);
|
|
69798
|
+
}
|
|
69799
|
+
this.status = _data["status"];
|
|
69800
|
+
this.override = _data["override"] ? AmcResultOverrideDto.fromJS(_data["override"]) : undefined as any;
|
|
69801
|
+
}
|
|
69802
|
+
}
|
|
69803
|
+
|
|
69804
|
+
static fromJS(data: any): AmcSpecificationFerriteMeasurementMethodResultLineDto {
|
|
69805
|
+
data = typeof data === 'object' ? data : {};
|
|
69806
|
+
let result = new AmcSpecificationFerriteMeasurementMethodResultLineDto();
|
|
69807
|
+
result.init(data);
|
|
69808
|
+
return result;
|
|
69809
|
+
}
|
|
69810
|
+
|
|
69811
|
+
toJSON(data?: any) {
|
|
69812
|
+
data = typeof data === 'object' ? data : {};
|
|
69813
|
+
if (Array.isArray(this.readValues)) {
|
|
69814
|
+
data["readValues"] = [];
|
|
69815
|
+
for (let item of this.readValues)
|
|
69816
|
+
data["readValues"].push(item);
|
|
69817
|
+
}
|
|
69818
|
+
data["status"] = this.status;
|
|
69819
|
+
data["override"] = this.override ? this.override.toJSON() : undefined as any;
|
|
69820
|
+
return data;
|
|
69821
|
+
}
|
|
69822
|
+
}
|
|
69823
|
+
|
|
69824
|
+
export interface IAmcSpecificationFerriteMeasurementMethodResultLineDto {
|
|
69825
|
+
readValues?: AmcFerriteMeasurementMethodDto[] | null;
|
|
69826
|
+
status: AmcSpecificationResultLineStatusDto;
|
|
69827
|
+
override?: AmcResultOverrideDto | null;
|
|
69787
69828
|
}
|
|
69788
69829
|
|
|
69789
69830
|
export type AmcFerriteMeasurementMethodDto = "Diushdf" | "Oidjrgr" | "Fjioerw";
|
|
69790
69831
|
|
|
69791
69832
|
export class AmcHeatTreatmentSpecificationResultDto implements IAmcHeatTreatmentSpecificationResultDto {
|
|
69792
|
-
heatTreatmentType
|
|
69833
|
+
heatTreatmentType?: AmcSpecificationHeatTreatmentTypeResultLineDto | null;
|
|
69793
69834
|
treatmentTemperature?: AmcSpecificationResultLineDto | null;
|
|
69794
69835
|
holdingTime?: AmcSpecificationResultLineDto | null;
|
|
69795
|
-
coolingMethod
|
|
69796
|
-
treatedCondition
|
|
69797
|
-
verificationMethod
|
|
69836
|
+
coolingMethod?: AmcSpecificationHeatCoolingMethodResultLineDto | null;
|
|
69837
|
+
treatedCondition?: AmcSpecificationHeatTreatedConditionResultLineDto | null;
|
|
69838
|
+
verificationMethod?: AmcSpecificationHeatVerificationMethodResultLineDto | null;
|
|
69798
69839
|
|
|
69799
69840
|
constructor(data?: IAmcHeatTreatmentSpecificationResultDto) {
|
|
69800
69841
|
if (data) {
|
|
@@ -69803,38 +69844,16 @@ export class AmcHeatTreatmentSpecificationResultDto implements IAmcHeatTreatment
|
|
|
69803
69844
|
(this as any)[property] = (data as any)[property];
|
|
69804
69845
|
}
|
|
69805
69846
|
}
|
|
69806
|
-
if (!data) {
|
|
69807
|
-
this.heatTreatmentType = [];
|
|
69808
|
-
this.coolingMethod = [];
|
|
69809
|
-
this.treatedCondition = [];
|
|
69810
|
-
this.verificationMethod = [];
|
|
69811
|
-
}
|
|
69812
69847
|
}
|
|
69813
69848
|
|
|
69814
69849
|
init(_data?: any) {
|
|
69815
69850
|
if (_data) {
|
|
69816
|
-
|
|
69817
|
-
this.heatTreatmentType = [] as any;
|
|
69818
|
-
for (let item of _data["heatTreatmentType"])
|
|
69819
|
-
this.heatTreatmentType!.push(item);
|
|
69820
|
-
}
|
|
69851
|
+
this.heatTreatmentType = _data["heatTreatmentType"] ? AmcSpecificationHeatTreatmentTypeResultLineDto.fromJS(_data["heatTreatmentType"]) : undefined as any;
|
|
69821
69852
|
this.treatmentTemperature = _data["treatmentTemperature"] ? AmcSpecificationResultLineDto.fromJS(_data["treatmentTemperature"]) : undefined as any;
|
|
69822
69853
|
this.holdingTime = _data["holdingTime"] ? AmcSpecificationResultLineDto.fromJS(_data["holdingTime"]) : undefined as any;
|
|
69823
|
-
|
|
69824
|
-
|
|
69825
|
-
|
|
69826
|
-
this.coolingMethod!.push(item);
|
|
69827
|
-
}
|
|
69828
|
-
if (Array.isArray(_data["treatedCondition"])) {
|
|
69829
|
-
this.treatedCondition = [] as any;
|
|
69830
|
-
for (let item of _data["treatedCondition"])
|
|
69831
|
-
this.treatedCondition!.push(item);
|
|
69832
|
-
}
|
|
69833
|
-
if (Array.isArray(_data["verificationMethod"])) {
|
|
69834
|
-
this.verificationMethod = [] as any;
|
|
69835
|
-
for (let item of _data["verificationMethod"])
|
|
69836
|
-
this.verificationMethod!.push(item);
|
|
69837
|
-
}
|
|
69854
|
+
this.coolingMethod = _data["coolingMethod"] ? AmcSpecificationHeatCoolingMethodResultLineDto.fromJS(_data["coolingMethod"]) : undefined as any;
|
|
69855
|
+
this.treatedCondition = _data["treatedCondition"] ? AmcSpecificationHeatTreatedConditionResultLineDto.fromJS(_data["treatedCondition"]) : undefined as any;
|
|
69856
|
+
this.verificationMethod = _data["verificationMethod"] ? AmcSpecificationHeatVerificationMethodResultLineDto.fromJS(_data["verificationMethod"]) : undefined as any;
|
|
69838
69857
|
}
|
|
69839
69858
|
}
|
|
69840
69859
|
|
|
@@ -69847,47 +69866,239 @@ export class AmcHeatTreatmentSpecificationResultDto implements IAmcHeatTreatment
|
|
|
69847
69866
|
|
|
69848
69867
|
toJSON(data?: any) {
|
|
69849
69868
|
data = typeof data === 'object' ? data : {};
|
|
69850
|
-
|
|
69851
|
-
data["heatTreatmentType"] = [];
|
|
69852
|
-
for (let item of this.heatTreatmentType)
|
|
69853
|
-
data["heatTreatmentType"].push(item);
|
|
69854
|
-
}
|
|
69869
|
+
data["heatTreatmentType"] = this.heatTreatmentType ? this.heatTreatmentType.toJSON() : undefined as any;
|
|
69855
69870
|
data["treatmentTemperature"] = this.treatmentTemperature ? this.treatmentTemperature.toJSON() : undefined as any;
|
|
69856
69871
|
data["holdingTime"] = this.holdingTime ? this.holdingTime.toJSON() : undefined as any;
|
|
69857
|
-
|
|
69858
|
-
|
|
69859
|
-
|
|
69860
|
-
data["coolingMethod"].push(item);
|
|
69861
|
-
}
|
|
69862
|
-
if (Array.isArray(this.treatedCondition)) {
|
|
69863
|
-
data["treatedCondition"] = [];
|
|
69864
|
-
for (let item of this.treatedCondition)
|
|
69865
|
-
data["treatedCondition"].push(item);
|
|
69866
|
-
}
|
|
69867
|
-
if (Array.isArray(this.verificationMethod)) {
|
|
69868
|
-
data["verificationMethod"] = [];
|
|
69869
|
-
for (let item of this.verificationMethod)
|
|
69870
|
-
data["verificationMethod"].push(item);
|
|
69871
|
-
}
|
|
69872
|
+
data["coolingMethod"] = this.coolingMethod ? this.coolingMethod.toJSON() : undefined as any;
|
|
69873
|
+
data["treatedCondition"] = this.treatedCondition ? this.treatedCondition.toJSON() : undefined as any;
|
|
69874
|
+
data["verificationMethod"] = this.verificationMethod ? this.verificationMethod.toJSON() : undefined as any;
|
|
69872
69875
|
return data;
|
|
69873
69876
|
}
|
|
69874
69877
|
}
|
|
69875
69878
|
|
|
69876
69879
|
export interface IAmcHeatTreatmentSpecificationResultDto {
|
|
69877
|
-
heatTreatmentType
|
|
69880
|
+
heatTreatmentType?: AmcSpecificationHeatTreatmentTypeResultLineDto | null;
|
|
69878
69881
|
treatmentTemperature?: AmcSpecificationResultLineDto | null;
|
|
69879
69882
|
holdingTime?: AmcSpecificationResultLineDto | null;
|
|
69880
|
-
coolingMethod
|
|
69881
|
-
treatedCondition
|
|
69882
|
-
verificationMethod
|
|
69883
|
+
coolingMethod?: AmcSpecificationHeatCoolingMethodResultLineDto | null;
|
|
69884
|
+
treatedCondition?: AmcSpecificationHeatTreatedConditionResultLineDto | null;
|
|
69885
|
+
verificationMethod?: AmcSpecificationHeatVerificationMethodResultLineDto | null;
|
|
69886
|
+
}
|
|
69887
|
+
|
|
69888
|
+
export class AmcSpecificationHeatTreatmentTypeResultLineDto implements IAmcSpecificationHeatTreatmentTypeResultLineDto {
|
|
69889
|
+
readValues?: AmcHeatTreatmentTypeDto[] | null;
|
|
69890
|
+
status!: AmcSpecificationResultLineStatusDto;
|
|
69891
|
+
override?: AmcResultOverrideDto | null;
|
|
69892
|
+
|
|
69893
|
+
constructor(data?: IAmcSpecificationHeatTreatmentTypeResultLineDto) {
|
|
69894
|
+
if (data) {
|
|
69895
|
+
for (var property in data) {
|
|
69896
|
+
if (data.hasOwnProperty(property))
|
|
69897
|
+
(this as any)[property] = (data as any)[property];
|
|
69898
|
+
}
|
|
69899
|
+
}
|
|
69900
|
+
}
|
|
69901
|
+
|
|
69902
|
+
init(_data?: any) {
|
|
69903
|
+
if (_data) {
|
|
69904
|
+
if (Array.isArray(_data["readValues"])) {
|
|
69905
|
+
this.readValues = [] as any;
|
|
69906
|
+
for (let item of _data["readValues"])
|
|
69907
|
+
this.readValues!.push(item);
|
|
69908
|
+
}
|
|
69909
|
+
this.status = _data["status"];
|
|
69910
|
+
this.override = _data["override"] ? AmcResultOverrideDto.fromJS(_data["override"]) : undefined as any;
|
|
69911
|
+
}
|
|
69912
|
+
}
|
|
69913
|
+
|
|
69914
|
+
static fromJS(data: any): AmcSpecificationHeatTreatmentTypeResultLineDto {
|
|
69915
|
+
data = typeof data === 'object' ? data : {};
|
|
69916
|
+
let result = new AmcSpecificationHeatTreatmentTypeResultLineDto();
|
|
69917
|
+
result.init(data);
|
|
69918
|
+
return result;
|
|
69919
|
+
}
|
|
69920
|
+
|
|
69921
|
+
toJSON(data?: any) {
|
|
69922
|
+
data = typeof data === 'object' ? data : {};
|
|
69923
|
+
if (Array.isArray(this.readValues)) {
|
|
69924
|
+
data["readValues"] = [];
|
|
69925
|
+
for (let item of this.readValues)
|
|
69926
|
+
data["readValues"].push(item);
|
|
69927
|
+
}
|
|
69928
|
+
data["status"] = this.status;
|
|
69929
|
+
data["override"] = this.override ? this.override.toJSON() : undefined as any;
|
|
69930
|
+
return data;
|
|
69931
|
+
}
|
|
69932
|
+
}
|
|
69933
|
+
|
|
69934
|
+
export interface IAmcSpecificationHeatTreatmentTypeResultLineDto {
|
|
69935
|
+
readValues?: AmcHeatTreatmentTypeDto[] | null;
|
|
69936
|
+
status: AmcSpecificationResultLineStatusDto;
|
|
69937
|
+
override?: AmcResultOverrideDto | null;
|
|
69883
69938
|
}
|
|
69884
69939
|
|
|
69885
69940
|
export type AmcHeatTreatmentTypeDto = "Sdjifo" | "Oijsdfi";
|
|
69886
69941
|
|
|
69942
|
+
export class AmcSpecificationHeatCoolingMethodResultLineDto implements IAmcSpecificationHeatCoolingMethodResultLineDto {
|
|
69943
|
+
readValues?: AmcHeatCoolingMethodDto[] | null;
|
|
69944
|
+
status!: AmcSpecificationResultLineStatusDto;
|
|
69945
|
+
override?: AmcResultOverrideDto | null;
|
|
69946
|
+
|
|
69947
|
+
constructor(data?: IAmcSpecificationHeatCoolingMethodResultLineDto) {
|
|
69948
|
+
if (data) {
|
|
69949
|
+
for (var property in data) {
|
|
69950
|
+
if (data.hasOwnProperty(property))
|
|
69951
|
+
(this as any)[property] = (data as any)[property];
|
|
69952
|
+
}
|
|
69953
|
+
}
|
|
69954
|
+
}
|
|
69955
|
+
|
|
69956
|
+
init(_data?: any) {
|
|
69957
|
+
if (_data) {
|
|
69958
|
+
if (Array.isArray(_data["readValues"])) {
|
|
69959
|
+
this.readValues = [] as any;
|
|
69960
|
+
for (let item of _data["readValues"])
|
|
69961
|
+
this.readValues!.push(item);
|
|
69962
|
+
}
|
|
69963
|
+
this.status = _data["status"];
|
|
69964
|
+
this.override = _data["override"] ? AmcResultOverrideDto.fromJS(_data["override"]) : undefined as any;
|
|
69965
|
+
}
|
|
69966
|
+
}
|
|
69967
|
+
|
|
69968
|
+
static fromJS(data: any): AmcSpecificationHeatCoolingMethodResultLineDto {
|
|
69969
|
+
data = typeof data === 'object' ? data : {};
|
|
69970
|
+
let result = new AmcSpecificationHeatCoolingMethodResultLineDto();
|
|
69971
|
+
result.init(data);
|
|
69972
|
+
return result;
|
|
69973
|
+
}
|
|
69974
|
+
|
|
69975
|
+
toJSON(data?: any) {
|
|
69976
|
+
data = typeof data === 'object' ? data : {};
|
|
69977
|
+
if (Array.isArray(this.readValues)) {
|
|
69978
|
+
data["readValues"] = [];
|
|
69979
|
+
for (let item of this.readValues)
|
|
69980
|
+
data["readValues"].push(item);
|
|
69981
|
+
}
|
|
69982
|
+
data["status"] = this.status;
|
|
69983
|
+
data["override"] = this.override ? this.override.toJSON() : undefined as any;
|
|
69984
|
+
return data;
|
|
69985
|
+
}
|
|
69986
|
+
}
|
|
69987
|
+
|
|
69988
|
+
export interface IAmcSpecificationHeatCoolingMethodResultLineDto {
|
|
69989
|
+
readValues?: AmcHeatCoolingMethodDto[] | null;
|
|
69990
|
+
status: AmcSpecificationResultLineStatusDto;
|
|
69991
|
+
override?: AmcResultOverrideDto | null;
|
|
69992
|
+
}
|
|
69993
|
+
|
|
69887
69994
|
export type AmcHeatCoolingMethodDto = "Asdfjoi" | "Fsdifjd";
|
|
69888
69995
|
|
|
69996
|
+
export class AmcSpecificationHeatTreatedConditionResultLineDto implements IAmcSpecificationHeatTreatedConditionResultLineDto {
|
|
69997
|
+
readValues?: AmcHeatTreatedConditionDto[] | null;
|
|
69998
|
+
status!: AmcSpecificationResultLineStatusDto;
|
|
69999
|
+
override?: AmcResultOverrideDto | null;
|
|
70000
|
+
|
|
70001
|
+
constructor(data?: IAmcSpecificationHeatTreatedConditionResultLineDto) {
|
|
70002
|
+
if (data) {
|
|
70003
|
+
for (var property in data) {
|
|
70004
|
+
if (data.hasOwnProperty(property))
|
|
70005
|
+
(this as any)[property] = (data as any)[property];
|
|
70006
|
+
}
|
|
70007
|
+
}
|
|
70008
|
+
}
|
|
70009
|
+
|
|
70010
|
+
init(_data?: any) {
|
|
70011
|
+
if (_data) {
|
|
70012
|
+
if (Array.isArray(_data["readValues"])) {
|
|
70013
|
+
this.readValues = [] as any;
|
|
70014
|
+
for (let item of _data["readValues"])
|
|
70015
|
+
this.readValues!.push(item);
|
|
70016
|
+
}
|
|
70017
|
+
this.status = _data["status"];
|
|
70018
|
+
this.override = _data["override"] ? AmcResultOverrideDto.fromJS(_data["override"]) : undefined as any;
|
|
70019
|
+
}
|
|
70020
|
+
}
|
|
70021
|
+
|
|
70022
|
+
static fromJS(data: any): AmcSpecificationHeatTreatedConditionResultLineDto {
|
|
70023
|
+
data = typeof data === 'object' ? data : {};
|
|
70024
|
+
let result = new AmcSpecificationHeatTreatedConditionResultLineDto();
|
|
70025
|
+
result.init(data);
|
|
70026
|
+
return result;
|
|
70027
|
+
}
|
|
70028
|
+
|
|
70029
|
+
toJSON(data?: any) {
|
|
70030
|
+
data = typeof data === 'object' ? data : {};
|
|
70031
|
+
if (Array.isArray(this.readValues)) {
|
|
70032
|
+
data["readValues"] = [];
|
|
70033
|
+
for (let item of this.readValues)
|
|
70034
|
+
data["readValues"].push(item);
|
|
70035
|
+
}
|
|
70036
|
+
data["status"] = this.status;
|
|
70037
|
+
data["override"] = this.override ? this.override.toJSON() : undefined as any;
|
|
70038
|
+
return data;
|
|
70039
|
+
}
|
|
70040
|
+
}
|
|
70041
|
+
|
|
70042
|
+
export interface IAmcSpecificationHeatTreatedConditionResultLineDto {
|
|
70043
|
+
readValues?: AmcHeatTreatedConditionDto[] | null;
|
|
70044
|
+
status: AmcSpecificationResultLineStatusDto;
|
|
70045
|
+
override?: AmcResultOverrideDto | null;
|
|
70046
|
+
}
|
|
70047
|
+
|
|
69889
70048
|
export type AmcHeatTreatedConditionDto = "Fsdijfo" | "Oisjdfi";
|
|
69890
70049
|
|
|
70050
|
+
export class AmcSpecificationHeatVerificationMethodResultLineDto implements IAmcSpecificationHeatVerificationMethodResultLineDto {
|
|
70051
|
+
readValues?: AmcHeatVerificationMethodDto[] | null;
|
|
70052
|
+
status!: AmcSpecificationResultLineStatusDto;
|
|
70053
|
+
override?: AmcResultOverrideDto | null;
|
|
70054
|
+
|
|
70055
|
+
constructor(data?: IAmcSpecificationHeatVerificationMethodResultLineDto) {
|
|
70056
|
+
if (data) {
|
|
70057
|
+
for (var property in data) {
|
|
70058
|
+
if (data.hasOwnProperty(property))
|
|
70059
|
+
(this as any)[property] = (data as any)[property];
|
|
70060
|
+
}
|
|
70061
|
+
}
|
|
70062
|
+
}
|
|
70063
|
+
|
|
70064
|
+
init(_data?: any) {
|
|
70065
|
+
if (_data) {
|
|
70066
|
+
if (Array.isArray(_data["readValues"])) {
|
|
70067
|
+
this.readValues = [] as any;
|
|
70068
|
+
for (let item of _data["readValues"])
|
|
70069
|
+
this.readValues!.push(item);
|
|
70070
|
+
}
|
|
70071
|
+
this.status = _data["status"];
|
|
70072
|
+
this.override = _data["override"] ? AmcResultOverrideDto.fromJS(_data["override"]) : undefined as any;
|
|
70073
|
+
}
|
|
70074
|
+
}
|
|
70075
|
+
|
|
70076
|
+
static fromJS(data: any): AmcSpecificationHeatVerificationMethodResultLineDto {
|
|
70077
|
+
data = typeof data === 'object' ? data : {};
|
|
70078
|
+
let result = new AmcSpecificationHeatVerificationMethodResultLineDto();
|
|
70079
|
+
result.init(data);
|
|
70080
|
+
return result;
|
|
70081
|
+
}
|
|
70082
|
+
|
|
70083
|
+
toJSON(data?: any) {
|
|
70084
|
+
data = typeof data === 'object' ? data : {};
|
|
70085
|
+
if (Array.isArray(this.readValues)) {
|
|
70086
|
+
data["readValues"] = [];
|
|
70087
|
+
for (let item of this.readValues)
|
|
70088
|
+
data["readValues"].push(item);
|
|
70089
|
+
}
|
|
70090
|
+
data["status"] = this.status;
|
|
70091
|
+
data["override"] = this.override ? this.override.toJSON() : undefined as any;
|
|
70092
|
+
return data;
|
|
70093
|
+
}
|
|
70094
|
+
}
|
|
70095
|
+
|
|
70096
|
+
export interface IAmcSpecificationHeatVerificationMethodResultLineDto {
|
|
70097
|
+
readValues?: AmcHeatVerificationMethodDto[] | null;
|
|
70098
|
+
status: AmcSpecificationResultLineStatusDto;
|
|
70099
|
+
override?: AmcResultOverrideDto | null;
|
|
70100
|
+
}
|
|
70101
|
+
|
|
69891
70102
|
export type AmcHeatVerificationMethodDto = "Fisjsdfdfo" | "Oisjdegrfo";
|
|
69892
70103
|
|
|
69893
70104
|
export class ProcessAmcCheckRequestDto implements IProcessAmcCheckRequestDto {
|