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

com.alipay.api.domain.AlipayCloudCloudbaseEnvAkModifyModel Maven / Gradle / Ivy

package com.alipay.api.domain;

import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;

/**
 * 修改 Access Key
 *
 * @author auto create
 * @since 1.0, 2023-08-08 22:41:33
 */
public class AlipayCloudCloudbaseEnvAkModifyModel extends AlipayObject {

	private static final long serialVersionUID = 3532943834447187788L;

	/**
	 * ak
	 */
	@ApiField("access_key_id")
	private String accessKeyId;

	/**
	 * 小程序id
	 */
	@ApiField("biz_app_id")
	private String bizAppId;

	/**
	 * 环境id
	 */
	@ApiField("biz_env_id")
	private String bizEnvId;

	/**
	 * 描述
	 */
	@ApiField("description")
	private String description;

	/**
	 * 是否开启
	 */
	@ApiField("enable")
	private Boolean enable;

	public String getAccessKeyId() {
		return this.accessKeyId;
	}
	public void setAccessKeyId(String accessKeyId) {
		this.accessKeyId = accessKeyId;
	}

	public String getBizAppId() {
		return this.bizAppId;
	}
	public void setBizAppId(String bizAppId) {
		this.bizAppId = bizAppId;
	}

	public String getBizEnvId() {
		return this.bizEnvId;
	}
	public void setBizEnvId(String bizEnvId) {
		this.bizEnvId = bizEnvId;
	}

	public String getDescription() {
		return this.description;
	}
	public void setDescription(String description) {
		this.description = description;
	}

	public Boolean getEnable() {
		return this.enable;
	}
	public void setEnable(Boolean enable) {
		this.enable = enable;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy