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

com.tinypass.client.publisher.model.ZuoraConfiguration 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 ZuoraConfiguration {

  /* Zuora client API key */
  private String apiKey = null;
  

  /* Zuora client API secret key */
  private String apiSecret = null;
  

  /* Zuora entity name */
  private String entityName = null;
  

  /* Zuora entity ID */
  private String entityId = null;
  


  public String getApiKey() {
    return apiKey;
  }
  public void setApiKey(String apiKey) {
    this.apiKey = apiKey;
  }


  public String getApiSecret() {
    return apiSecret;
  }
  public void setApiSecret(String apiSecret) {
    this.apiSecret = apiSecret;
  }


  public String getEntityName() {
    return entityName;
  }
  public void setEntityName(String entityName) {
    this.entityName = entityName;
  }


  public String getEntityId() {
    return entityId;
  }
  public void setEntityId(String entityId) {
    this.entityId = entityId;
  }


  @Override
  public String toString()  {
    StringBuilder sb = new StringBuilder();
    sb.append("class ZuoraConfiguration {\n");
    sb.append("  apiKey: ").append(apiKey).append("\n");
    sb.append("  apiSecret: ").append(apiSecret).append("\n");
    sb.append("  entityName: ").append(entityName).append("\n");
    sb.append("  entityId: ").append(entityId).append("\n");
    sb.append("}\n");
    return sb.toString();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy