com.alipay.api.response.AlipayCloudCloudbaseIdeConfigGetResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.response;
import java.util.List;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
import com.alipay.api.domain.GatewayConfig;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.cloud.cloudbase.ide.config.get response.
*
* @author auto create
* @since 1.0, 2024-11-22 14:41:27
*/
public class AlipayCloudCloudbaseIdeConfigGetResponse extends AlipayResponse {
private static final long serialVersionUID = 4256974457579716767L;
/**
* accessKey
*/
@ApiField("access_key")
private String accessKey;
/**
* 网关配置
*/
@ApiListField("gateway_configs")
@ApiField("gateway_config")
private List gatewayConfigs;
/**
* secretKey
*/
@ApiField("secret_key")
private String secretKey;
public void setAccessKey(String accessKey) {
this.accessKey = accessKey;
}
public String getAccessKey( ) {
return this.accessKey;
}
public void setGatewayConfigs(List gatewayConfigs) {
this.gatewayConfigs = gatewayConfigs;
}
public List getGatewayConfigs( ) {
return this.gatewayConfigs;
}
public void setSecretKey(String secretKey) {
this.secretKey = secretKey;
}
public String getSecretKey( ) {
return this.secretKey;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy