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

com.tinypass.client.anon.model.Source Maven / Gradle / Ivy

There is a newer version: 16.331.0
Show newest version
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;
import java.util.ArrayList;
import java.util.List;

public class Source {

  /* Message context */
  private String type = null;
  

    private List sourceNames = new ArrayList();
  


  public String getType() {
    return type;
  }
  public void setType(String type) {
    this.type = type;
  }


  public List getSourceNames() {
    return sourceNames;
  }
  public void setSourceNames(List sourceNames) {
    this.sourceNames = sourceNames;
  }


  @Override
  public String toString()  {
    StringBuilder sb = new StringBuilder();
    sb.append("class Source {\n");
    sb.append("  type: ").append(type).append("\n");
    sb.append("  sourceNames: ").append(sourceNames).append("\n");
    sb.append("}\n");
    return sb.toString();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy