Skip to content

Commit 15afd60

Browse files
committed
Generated ts 2023-01-17 for airticketOpen.
1 parent 576719a commit 15afd60

8 files changed

+158
-143
lines changed

airticketopen-20230117/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@alicloud/airticketopen20230117",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"description": "",
55
"main": "dist/client.js",
66
"scripts": {

airticketopen-20230117/src/client.ts

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -797,10 +797,7 @@ export default class Client extends OpenApi {
797797
* Search-Enrich
798798
*
799799
* @remarks
800-
* Enrich supports two modes:
801-
* 1. mode1: enter solution_id returned by Search.
802-
* 2. mode2: enter journeyParamList.
803-
* If you already confirm which flight to fly with, then you can use mode2, otherwise, use mode1(search first, then chose one solution_ID and Enrich).
800+
* Choose either `solution_id` or `journey_param_list` in the parameters, and `solution_id` needs to be obtained from the Search interface.
804801
*
805802
* @param tmpReq - EnrichRequest
806803
* @param headers - EnrichHeaders
@@ -875,10 +872,7 @@ export default class Client extends OpenApi {
875872
* Search-Enrich
876873
*
877874
* @remarks
878-
* Enrich supports two modes:
879-
* 1. mode1: enter solution_id returned by Search.
880-
* 2. mode2: enter journeyParamList.
881-
* If you already confirm which flight to fly with, then you can use mode2, otherwise, use mode1(search first, then chose one solution_ID and Enrich).
875+
* Choose either `solution_id` or `journey_param_list` in the parameters, and `solution_id` needs to be obtained from the Search interface.
882876
*
883877
* @param request - EnrichRequest
884878
* @returns EnrichResponse

airticketopen-20230117/src/models/DataSolutionListSegmentBaggageMappingListPassengerBaggageAllowanceMappingValue.ts

Lines changed: 34 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,104 +5,128 @@ import * as $dara from '@darabonba/typescript';
55
export class DataSolutionListSegmentBaggageMappingListPassengerBaggageAllowanceMappingValue extends $dara.Model {
66
/**
77
* @remarks
8-
* checked baggage quantity
8+
* Number of checked baggage pieces
99
*
1010
* @example
1111
* 22
1212
*/
1313
baggageAmount?: number;
1414
/**
1515
* @remarks
16-
* checked baggage weight
16+
* Weight of checked baggage
1717
*
1818
* @example
1919
* 2
2020
*/
2121
baggageWeight?: number;
2222
/**
2323
* @remarks
24-
* checked baggage weight unit
24+
* Unit of checked baggage weight (KG)
2525
*
2626
* @example
27-
* kg
27+
* KG
2828
*/
2929
baggageWeightUnit?: string;
3030
/**
3131
* @remarks
32-
* Whether the weight is for all baggages
32+
* Whether the weight applies to all checked baggage
3333
*
3434
* @example
3535
* true
3636
*/
3737
isAllWeight?: boolean;
3838
/**
3939
* @remarks
40-
* carry-on baggage quantity
40+
* Number of carry-on baggage pieces
4141
*
4242
* @example
4343
* 1
4444
*/
4545
carryOnAmount?: number;
4646
/**
4747
* @remarks
48-
* carry-on baggage weight
48+
* Weight of carry-on baggage
4949
*
5050
* @example
5151
* 2
5252
*/
5353
carryOnWeight?: number;
5454
/**
5555
* @remarks
56-
* carry-on baggage weight unit
56+
* Carry-on luggage weight unit KG
5757
*
5858
* @example
59-
* kg
59+
* KG
6060
*/
6161
carryOnWeightUnit?: string;
6262
/**
6363
* @remarks
64-
* Whether the weight is for all baggages
64+
* Whether it is the total carry-on luggage weight
6565
*
6666
* @example
6767
* true
6868
*/
6969
isAllCarryOnWeight?: boolean;
7070
/**
71+
* @remarks
72+
* Carry-on luggage length (unit: centimeters)
73+
*
7174
* @example
7275
* 55
7376
*/
7477
carryLength?: number;
7578
/**
79+
* @remarks
80+
* Carry-on luggage width (unit: centimeters)
81+
*
7682
* @example
7783
* 40
7884
*/
7985
carryWidth?: number;
8086
/**
87+
* @remarks
88+
* Carry-on luggage height (unit: centimeters)
89+
*
8190
* @example
8291
* 20
8392
*/
8493
carryHeight?: number;
8594
/**
95+
* @remarks
96+
* Sum of three sides of the Carry-on luggage (unit: centimeters)
97+
*
8698
* @example
8799
* 115
88100
*/
89101
carrySumOfLengthWidthHeight?: number;
90102
/**
103+
* @remarks
104+
* Check-in luggage length (unit: centimeters)
105+
*
91106
* @example
92107
* 60
93108
*/
94109
length?: number;
95110
/**
111+
* @remarks
112+
* Check-in luggage width (unit: centimeters)
113+
*
96114
* @example
97115
* 40
98116
*/
99117
width?: number;
100118
/**
119+
* @remarks
120+
* Check-in luggage height (unit: centimeters)
121+
*
101122
* @example
102123
* 60
103124
*/
104125
height?: number;
105126
/**
127+
* @remarks
128+
* Sum of three sides of the Check-in luggage (unit: centimeters)
129+
*
106130
* @example
107131
* 200
108132
*/

0 commit comments

Comments
 (0)