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

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

There is a newer version: 16.331.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 com.tinypass.client.publisher.model.LicenseeManager;
import com.tinypass.client.publisher.model.LicenseeRepresentative;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
import java.util.List;

public class Licensee {

  /* The application ID */
  private String aid = null;
  

  /* The public ID of the licensee */
  private String licenseeId = null;
  

  /* The name of the licensee */
  private String name = null;
  

  /* The description of the licensee */
  private String description = null;
  

  /* A relative URL of the licensee's logo */
  private String logoUrl = null;
  

    private List representatives = new ArrayList();
  

    private List managers = new ArrayList();
  


  public String getAid() {
    return aid;
  }
  public void setAid(String aid) {
    this.aid = aid;
  }


  public String getLicenseeId() {
    return licenseeId;
  }
  public void setLicenseeId(String licenseeId) {
    this.licenseeId = licenseeId;
  }


  public String getName() {
    return name;
  }
  public void setName(String name) {
    this.name = name;
  }


  public String getDescription() {
    return description;
  }
  public void setDescription(String description) {
    this.description = description;
  }


  public String getLogoUrl() {
    return logoUrl;
  }
  public void setLogoUrl(String logoUrl) {
    this.logoUrl = logoUrl;
  }


  public List getRepresentatives() {
    return representatives;
  }
  public void setRepresentatives(List representatives) {
    this.representatives = representatives;
  }


  public List getManagers() {
    return managers;
  }
  public void setManagers(List managers) {
    this.managers = managers;
  }


  @Override
  public String toString()  {
    StringBuilder sb = new StringBuilder();
    sb.append("class Licensee {\n");
    sb.append("  aid: ").append(aid).append("\n");
    sb.append("  licenseeId: ").append(licenseeId).append("\n");
    sb.append("  name: ").append(name).append("\n");
    sb.append("  description: ").append(description).append("\n");
    sb.append("  logoUrl: ").append(logoUrl).append("\n");
    sb.append("  representatives: ").append(representatives).append("\n");
    sb.append("  managers: ").append(managers).append("\n");
    sb.append("}\n");
    return sb.toString();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy