![JAR search and dependency download from the Maven repository](/logo.png)
com.tinypass.client.publisher.model.PaySourceDTO 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 io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
public class PaySourceDTO {
/* The ID */
private Integer id = null;
/* The identifier */
private String identifier = null;
/* The caption */
private String caption = null;
/* The title */
private String title = null;
/* The title */
private String customTitle = null;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getIdentifier() {
return identifier;
}
public void setIdentifier(String identifier) {
this.identifier = identifier;
}
public String getCaption() {
return caption;
}
public void setCaption(String caption) {
this.caption = caption;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getCustomTitle() {
return customTitle;
}
public void setCustomTitle(String customTitle) {
this.customTitle = customTitle;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class PaySourceDTO {\n");
sb.append(" id: ").append(id).append("\n");
sb.append(" identifier: ").append(identifier).append("\n");
sb.append(" caption: ").append(caption).append("\n");
sb.append(" title: ").append(title).append("\n");
sb.append(" customTitle: ").append(customTitle).append("\n");
sb.append("}\n");
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy