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

com.stripe.model.entitlements.Feature Maven / Gradle / Ivy

There is a newer version: 28.1.0-beta.3
Show newest version
// File generated from our OpenAPI spec
package com.stripe.model.entitlements;

import com.google.gson.annotations.SerializedName;
import com.stripe.exception.StripeException;
import com.stripe.model.HasId;
import com.stripe.model.MetadataStore;
import com.stripe.net.ApiRequest;
import com.stripe.net.ApiRequestParams;
import com.stripe.net.ApiResource;
import com.stripe.net.BaseAddress;
import com.stripe.net.RequestOptions;
import com.stripe.param.entitlements.FeatureCreateParams;
import com.stripe.param.entitlements.FeatureListParams;
import com.stripe.param.entitlements.FeatureRetrieveParams;
import com.stripe.param.entitlements.FeatureUpdateParams;
import java.util.Map;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;

/**
 * A feature represents a monetizable ability or functionality in your system. Features can be
 * assigned to products, and when those products are purchased, Stripe will create an entitlement to
 * the feature for the purchasing customer.
 */
@Getter
@Setter
@EqualsAndHashCode(callSuper = false)
public class Feature extends ApiResource implements HasId, MetadataStore {
  /**
   * Inactive features cannot be attached to new products and will not be returned from the features
   * list endpoint.
   */
  @SerializedName("active")
  Boolean active;

  /** Unique identifier for the object. */
  @Getter(onMethod_ = {@Override})
  @SerializedName("id")
  String id;

  /**
   * Has the value {@code true} if the object exists in live mode or the value {@code false} if the
   * object exists in test mode.
   */
  @SerializedName("livemode")
  Boolean livemode;

  /** A unique key you provide as your own system identifier. This may be up to 80 characters. */
  @SerializedName("lookup_key")
  String lookupKey;

  /**
   * Set of key-value pairs that you can attach to an object. This can be useful for storing
   * additional information about the object in a structured format.
   */
  @Getter(onMethod_ = {@Override})
  @SerializedName("metadata")
  Map metadata;

  /** The feature's name, for your own purpose, not meant to be displayable to the customer. */
  @SerializedName("name")
  String name;

  /**
   * String representing the object's type. Objects of the same type share the same value.
   *
   * 

Equal to {@code entitlements.feature}. */ @SerializedName("object") String object; /** Creates a feature. */ public static Feature create(Map params) throws StripeException { return create(params, (RequestOptions) null); } /** Creates a feature. */ public static Feature create(Map params, RequestOptions options) throws StripeException { String path = "/v1/entitlements/features"; ApiRequest request = new ApiRequest(BaseAddress.API, ApiResource.RequestMethod.POST, path, params, options); return getGlobalResponseGetter().request(request, Feature.class); } /** Creates a feature. */ public static Feature create(FeatureCreateParams params) throws StripeException { return create(params, (RequestOptions) null); } /** Creates a feature. */ public static Feature create(FeatureCreateParams params, RequestOptions options) throws StripeException { String path = "/v1/entitlements/features"; ApiResource.checkNullTypedParams(path, params); ApiRequest request = new ApiRequest( BaseAddress.API, ApiResource.RequestMethod.POST, path, ApiRequestParams.paramsToMap(params), options); return getGlobalResponseGetter().request(request, Feature.class); } /** Retrieve a list of features. */ public static FeatureCollection list(Map params) throws StripeException { return list(params, (RequestOptions) null); } /** Retrieve a list of features. */ public static FeatureCollection list(Map params, RequestOptions options) throws StripeException { String path = "/v1/entitlements/features"; ApiRequest request = new ApiRequest(BaseAddress.API, ApiResource.RequestMethod.GET, path, params, options); return getGlobalResponseGetter().request(request, FeatureCollection.class); } /** Retrieve a list of features. */ public static FeatureCollection list(FeatureListParams params) throws StripeException { return list(params, (RequestOptions) null); } /** Retrieve a list of features. */ public static FeatureCollection list(FeatureListParams params, RequestOptions options) throws StripeException { String path = "/v1/entitlements/features"; ApiResource.checkNullTypedParams(path, params); ApiRequest request = new ApiRequest( BaseAddress.API, ApiResource.RequestMethod.GET, path, ApiRequestParams.paramsToMap(params), options); return getGlobalResponseGetter().request(request, FeatureCollection.class); } /** Retrieves a feature. */ public static Feature retrieve(String id) throws StripeException { return retrieve(id, (Map) null, (RequestOptions) null); } /** Retrieves a feature. */ public static Feature retrieve(String id, RequestOptions options) throws StripeException { return retrieve(id, (Map) null, options); } /** Retrieves a feature. */ public static Feature retrieve(String id, Map params, RequestOptions options) throws StripeException { String path = String.format("/v1/entitlements/features/%s", ApiResource.urlEncodeId(id)); ApiRequest request = new ApiRequest(BaseAddress.API, ApiResource.RequestMethod.GET, path, params, options); return getGlobalResponseGetter().request(request, Feature.class); } /** Retrieves a feature. */ public static Feature retrieve(String id, FeatureRetrieveParams params, RequestOptions options) throws StripeException { String path = String.format("/v1/entitlements/features/%s", ApiResource.urlEncodeId(id)); ApiResource.checkNullTypedParams(path, params); ApiRequest request = new ApiRequest( BaseAddress.API, ApiResource.RequestMethod.GET, path, ApiRequestParams.paramsToMap(params), options); return getGlobalResponseGetter().request(request, Feature.class); } /** Update a feature’s metadata or permanently deactivate it. */ @Override public Feature update(Map params) throws StripeException { return update(params, (RequestOptions) null); } /** Update a feature’s metadata or permanently deactivate it. */ @Override public Feature update(Map params, RequestOptions options) throws StripeException { String path = String.format("/v1/entitlements/features/%s", ApiResource.urlEncodeId(this.getId())); ApiRequest request = new ApiRequest(BaseAddress.API, ApiResource.RequestMethod.POST, path, params, options); return getResponseGetter().request(request, Feature.class); } /** Update a feature’s metadata or permanently deactivate it. */ public Feature update(FeatureUpdateParams params) throws StripeException { return update(params, (RequestOptions) null); } /** Update a feature’s metadata or permanently deactivate it. */ public Feature update(FeatureUpdateParams params, RequestOptions options) throws StripeException { String path = String.format("/v1/entitlements/features/%s", ApiResource.urlEncodeId(this.getId())); ApiResource.checkNullTypedParams(path, params); ApiRequest request = new ApiRequest( BaseAddress.API, ApiResource.RequestMethod.POST, path, ApiRequestParams.paramsToMap(params), options); return getResponseGetter().request(request, Feature.class); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy