All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tinypass.client.publisher.model.CommentAction Maven / Gradle / Ivy

There is a newer version: 16.366.0
Show newest version
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 CommentAction {

  /* The inquiry action ID */
  private String id = null;
  

  /* Caption of inquiry action */
  private String caption = null;
    //public enum captionEnum {  REPLY_ONLY,  RESOLVE,  REFUND_GRANT,  REFUND_REVOKE,  NO_REFUND_GRANT,  NO_REFUND_REVOKE,  REFUND_ONLY,  DECLINE,  SUB_CANCEL,  SUB_REFUND_ONLY,  SUB_REFUND_CANCEL,  };



  public String getId() {
    return id;
  }
  public void setId(String id) {
    this.id = id;
  }


  public String getCaption() {
    return caption;
  }
  public void setCaption(String caption) {
    this.caption = caption;
  }


  @Override
  public String toString()  {
    StringBuilder sb = new StringBuilder();
    sb.append("class CommentAction {\n");
    sb.append("  id: ").append(id).append("\n");
    sb.append("  caption: ").append(caption).append("\n");
    sb.append("}\n");
    return sb.toString();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy