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

io.permit.sdk.openapi.models.EnvironmentCopyTarget Maven / Gradle / Ivy

There is a newer version: 983f46e
Show newest version

package io.permit.sdk.openapi.models;

import javax.annotation.Generated;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;


/**
 * EnvironmentCopyTarget
 * 

* * */ @Generated("jsonschema2pojo") public class EnvironmentCopyTarget { /** * Existing *

* Identifier of an existing environment to copy into * */ @SerializedName("existing") @Expose public String existing; /** * New *

* Description of the environment to create. This environment must not already exist. * */ @SerializedName("new") @Expose public EnvironmentCreate _new; public EnvironmentCopyTarget withExisting(String existing) { this.existing = existing; return this; } public EnvironmentCopyTarget withNew(EnvironmentCreate _new) { this._new = _new; return this; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy