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

org.cloudfoundry.client.v3.routes._InsertRouteDestinationsRequest Maven / Gradle / Ivy

There is a newer version: 5.12.2.RELEASE
Show newest version
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();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy