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

com.recurly.v3.resources.Entitlements Maven / Gradle / Ivy

There is a newer version: 4.58.0
Show newest version
/**
 * This file is automatically created by Recurly's OpenAPI generation process and thus any edits you
 * make by hand will be lost. If you wish to make a change to this file, please create a Github
 * issue explaining the changes you need and we will usher them to the appropriate places.
 */
package com.recurly.v3.resources;

import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import com.recurly.v3.Resource;
import java.util.List;

public class Entitlements extends Resource {

  @SerializedName("data")
  @Expose
  private List data;

  /** Indicates there are more results on subsequent pages. */
  @SerializedName("has_more")
  @Expose
  private Boolean hasMore;

  /** Path to subsequent page of results. */
  @SerializedName("next")
  @Expose
  private String next;

  /** Object Type */
  @SerializedName("object")
  @Expose
  private String object;

  public List getData() {
    return this.data;
  }

  /** @param data */
  public void setData(final List data) {
    this.data = data;
  }

  /** Indicates there are more results on subsequent pages. */
  public Boolean getHasMore() {
    return this.hasMore;
  }

  /** @param hasMore Indicates there are more results on subsequent pages. */
  public void setHasMore(final Boolean hasMore) {
    this.hasMore = hasMore;
  }

  /** Path to subsequent page of results. */
  public String getNext() {
    return this.next;
  }

  /** @param next Path to subsequent page of results. */
  public void setNext(final String next) {
    this.next = next;
  }

  /** Object Type */
  public String getObject() {
    return this.object;
  }

  /** @param object Object Type */
  public void setObject(final String object) {
    this.object = object;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy