Skip to content

Commit b859438

Browse files
committed
update transfer offers model
1 parent 1757ed3 commit b859438

File tree

4 files changed

+336
-112
lines changed

4 files changed

+336
-112
lines changed

src/main/java/com/amadeus/Shopping.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
import com.amadeus.shopping.HotelOfferSearch;
1111
import com.amadeus.shopping.HotelOffersSearch;
1212
import com.amadeus.shopping.SeatMaps;
13+
import com.amadeus.shopping.TransferOffers;
1314

1415

1516
/**
@@ -103,6 +104,14 @@ public class Shopping {
103104
*/
104105
public Availability availability;
105106

107+
/**
108+
* <p>
109+
* A namespaced client for the
110+
* <code>/v1/shopping/transfer-offers</code> endpoints.
111+
* </p>
112+
*/
113+
public TransferOffers transferOffers;
114+
106115
/**
107116
* Constructor.
108117
* @hide
@@ -117,6 +126,7 @@ public Shopping(Amadeus client) {
117126
this.seatMaps = new SeatMaps(client);
118127
this.activities = new Activities(client);
119128
this.availability = new Availability(client);
129+
this.transferOffers = new TransferOffers(client);
120130
}
121131

122132
/**

src/main/java/com/amadeus/resources/TransferOffers.java

Lines changed: 0 additions & 104 deletions
This file was deleted.

0 commit comments

Comments
 (0)