package com.yihu.iot.model; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; /** * GtClientDetails entity. @author MyEclipse Persistence Tools */ @ApiModel(description = "") public class GcClientDetailsModel{ // Fields @ApiModelProperty(value = "appId", required = false, access = "response") private String appId; @ApiModelProperty(value = "appSecret", required = false, access = "response") private String appSecret; public String getAppId() { return appId; } public void setAppId(String appId) { this.appId = appId; } public String getAppSecret() { return appSecret; } public void setAppSecret(String appSecret) { this.appSecret = appSecret; } }