All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amadeus.ordering.transferOrders.Transfers Maven / Gradle / Ivy

package com.amadeus.ordering.transferOrders;

import com.amadeus.Amadeus;
import com.amadeus.ordering.transferOrders.transfers.Cancellation;

/**
 * 

* A namespaced client for the * /v1/ordering/transfer-orders/{orderId}/transfers/cancellation endpoints. *

* *

* Access via the Amadeus client object *

* *
 * Amadeus amadeus = Amadeus.builder("clientId", "secret").build();
 * amadeus.ordering.transferOrders(orderId).urls;
* * @hide */ public class Transfers { /** *

* A namespaced client for the * /v1/ordering/transfer-orders/{orderId}/transfers/cancellation endpoints. *

*/ public Cancellation cancellation; /** * Constructor. * @hide */ public Transfers(Amadeus client, String orderId) { this.cancellation = new Cancellation(client, orderId); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy