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

com.aliyun.sdk.service.cs20151215.models.Runtime Maven / Gradle / Ivy

There is a newer version: 2.0.29
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.cs20151215.models;

import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;

/**
 * {@link Runtime} extends {@link TeaModel}
 *
 * 

Runtime

*/ public class Runtime extends TeaModel { @com.aliyun.core.annotation.NameInMap("name") private String name; @com.aliyun.core.annotation.NameInMap("version") private String version; private Runtime(Builder builder) { this.name = builder.name; this.version = builder.version; } public static Builder builder() { return new Builder(); } public static Runtime create() { return builder().build(); } /** * @return name */ public String getName() { return this.name; } /** * @return version */ public String getVersion() { return this.version; } public static final class Builder { private String name; private String version; /** * name. */ public Builder name(String name) { this.name = name; return this; } /** * version. */ public Builder version(String version) { this.version = version; return this; } public Runtime build() { return new Runtime(this); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy