com.alipay.api.domain.FengdieSpaceDetailModel 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.domain;
import java.util.List;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
/**
* 云凤蝶空间详情模型
*
* @author auto create
* @since 1.0, 2018-10-22 16:58:26
*/
public class FengdieSpaceDetailModel extends AlipayObject {
private static final long serialVersionUID = 2461659345795729422L;
/**
* 空间可用域名列表,云凤蝶站点发布后链接可用采用的域名
*/
@ApiListField("domains")
@ApiField("fengdie_space_domains")
private List domains;
/**
* 空间创建时间
*/
@ApiField("gmt_create")
private String gmtCreate;
/**
* 空间 ID
*/
@ApiField("space_id")
private String spaceId;
/**
* 空间标题
*/
@ApiField("title")
private String title;
public List getDomains() {
return this.domains;
}
public void setDomains(List domains) {
this.domains = domains;
}
public String getGmtCreate() {
return this.gmtCreate;
}
public void setGmtCreate(String gmtCreate) {
this.gmtCreate = gmtCreate;
}
public String getSpaceId() {
return this.spaceId;
}
public void setSpaceId(String spaceId) {
this.spaceId = spaceId;
}
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy