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

com.tinypass.client.publisher.model.LinkedTermSharedAccessParams 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;
import java.util.ArrayList;
import java.util.List;

public class LinkedTermSharedAccessParams {

  /* The ID of the subscription which access will be shared or revoked. */
  private String subscriptionId = null;
  

  /* The JWT tokens of the users getting or losing the status of a child account of the subscription. */
  private List userTokens = new ArrayList();
  


  public String getSubscriptionId() {
    return subscriptionId;
  }
  public void setSubscriptionId(String subscriptionId) {
    this.subscriptionId = subscriptionId;
  }


  public List getUserTokens() {
    return userTokens;
  }
  public void setUserTokens(List userTokens) {
    this.userTokens = userTokens;
  }


  @Override
  public String toString()  {
    StringBuilder sb = new StringBuilder();
    sb.append("class LinkedTermSharedAccessParams {\n");
    sb.append("  subscriptionId: ").append(subscriptionId).append("\n");
    sb.append("  userTokens: ").append(userTokens).append("\n");
    sb.append("}\n");
    return sb.toString();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy