com.tinypass.client.anon.model.ClientConfigurationsDto Maven / Gradle / Ivy
package com.tinypass.client.anon.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
public class ClientConfigurationsDto {
/* GA Account */
private String gaAccount = null;
/* Is Performance Metrics enabled */
private String isPerformanceMetricsEnabled = null;
/* Performance Metrics GA Account */
private String performanceMetricsGaAccount = null;
/* Performance Metrics Track Only AIDs */
private String performanceMetricsTrackOnlyAids = null;
/* MSQA Client ID */
private String msqaClientId = null;
public String getGaAccount() {
return gaAccount;
}
public void setGaAccount(String gaAccount) {
this.gaAccount = gaAccount;
}
public String getIsPerformanceMetricsEnabled() {
return isPerformanceMetricsEnabled;
}
public void setIsPerformanceMetricsEnabled(String isPerformanceMetricsEnabled) {
this.isPerformanceMetricsEnabled = isPerformanceMetricsEnabled;
}
public String getPerformanceMetricsGaAccount() {
return performanceMetricsGaAccount;
}
public void setPerformanceMetricsGaAccount(String performanceMetricsGaAccount) {
this.performanceMetricsGaAccount = performanceMetricsGaAccount;
}
public String getPerformanceMetricsTrackOnlyAids() {
return performanceMetricsTrackOnlyAids;
}
public void setPerformanceMetricsTrackOnlyAids(String performanceMetricsTrackOnlyAids) {
this.performanceMetricsTrackOnlyAids = performanceMetricsTrackOnlyAids;
}
public String getMsqaClientId() {
return msqaClientId;
}
public void setMsqaClientId(String msqaClientId) {
this.msqaClientId = msqaClientId;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ClientConfigurationsDto {\n");
sb.append(" gaAccount: ").append(gaAccount).append("\n");
sb.append(" isPerformanceMetricsEnabled: ").append(isPerformanceMetricsEnabled).append("\n");
sb.append(" performanceMetricsGaAccount: ").append(performanceMetricsGaAccount).append("\n");
sb.append(" performanceMetricsTrackOnlyAids: ").append(performanceMetricsTrackOnlyAids).append("\n");
sb.append(" msqaClientId: ").append(msqaClientId).append("\n");
sb.append("}\n");
return sb.toString();
}
}