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

com.aliyun.sdk.service.ens20171110.models.UdpConfig Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ens20171110.models;

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

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

UdpConfig

*/ public class UdpConfig extends TeaModel { @com.aliyun.core.annotation.NameInMap("HashKey") private String hashKey; @com.aliyun.core.annotation.NameInMap("Scheduler") private String scheduler; private UdpConfig(Builder builder) { this.hashKey = builder.hashKey; this.scheduler = builder.scheduler; } public static Builder builder() { return new Builder(); } public static UdpConfig create() { return builder().build(); } /** * @return hashKey */ public String getHashKey() { return this.hashKey; } /** * @return scheduler */ public String getScheduler() { return this.scheduler; } public static final class Builder { private String hashKey; private String scheduler; /** * HashKey. */ public Builder hashKey(String hashKey) { this.hashKey = hashKey; return this; } /** * Scheduler. */ public Builder scheduler(String scheduler) { this.scheduler = scheduler; return this; } public UdpConfig build() { return new UdpConfig(this); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy