com.aliyun.neuron20211115.models.GetTokenRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.neuron20211115.models;
import com.aliyun.tea.*;
public class GetTokenRequest extends TeaModel {
@NameInMap("accountId")
public String accountId;
@NameInMap("pbcId")
public Long pbcId;
public static GetTokenRequest build(java.util.Map map) throws Exception {
GetTokenRequest self = new GetTokenRequest();
return TeaModel.build(map, self);
}
public GetTokenRequest setAccountId(String accountId) {
this.accountId = accountId;
return this;
}
public String getAccountId() {
return this.accountId;
}
public GetTokenRequest setPbcId(Long pbcId) {
this.pbcId = pbcId;
return this;
}
public Long getPbcId() {
return this.pbcId;
}
}