com.tinypass.client.publisher.model.PpcWebModel Maven / Gradle / Ivy
package com.tinypass.client.publisher.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import com.tinypass.client.publisher.model.ConfigurationPropertyMetadata;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
import java.util.List;
public class PpcWebModel {
/* The name */
private String name = null;
/* The title */
private String title = null;
/* The payment provider source ID */
private String sourceId = null;
private List properties = new ArrayList();
private Object configurationAttributes = null;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getSourceId() {
return sourceId;
}
public void setSourceId(String sourceId) {
this.sourceId = sourceId;
}
public List getProperties() {
return properties;
}
public void setProperties(List properties) {
this.properties = properties;
}
public Object getConfigurationAttributes() {
return configurationAttributes;
}
public void setConfigurationAttributes(Object configurationAttributes) {
this.configurationAttributes = configurationAttributes;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class PpcWebModel {\n");
sb.append(" name: ").append(name).append("\n");
sb.append(" title: ").append(title).append("\n");
sb.append(" sourceId: ").append(sourceId).append("\n");
sb.append(" properties: ").append(properties).append("\n");
sb.append(" configurationAttributes: ").append(configurationAttributes).append("\n");
sb.append("}\n");
return sb.toString();
}
}