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

com.tinypass.client.anon.model.KeySource 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 com.tinypass.client.anon.model.Source;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
import java.util.List;

public class KeySource {

  /* Message key */
  private String key = null;
  

    private List keySources = new ArrayList();
  


  public String getKey() {
    return key;
  }
  public void setKey(String key) {
    this.key = key;
  }


  public List getKeySources() {
    return keySources;
  }
  public void setKeySources(List keySources) {
    this.keySources = keySources;
  }


  @Override
  public String toString()  {
    StringBuilder sb = new StringBuilder();
    sb.append("class KeySource {\n");
    sb.append("  key: ").append(key).append("\n");
    sb.append("  keySources: ").append(keySources).append("\n");
    sb.append("}\n");
    return sb.toString();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy