org.cloudfoundry.client.v3.routes._InsertRouteDestinationsRequest Maven / Gradle / Ivy
package org.cloudfoundry.client.v3.routes;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import org.immutables.value.Value;
import java.util.List;
/**
* The request payload for the Insert Route Destinations operation
*/
@JsonSerialize
@Value.Immutable
abstract class _InsertRouteDestinationsRequest {
/**
* The destinations to add to the route
*/
@JsonProperty("destinations")
abstract List getDestinations();
/**
* The route id
*/
@JsonIgnore
abstract String getRouteId();
}