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

com.stripe.model.terminal.ConnectionToken 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.terminal;

import com.google.gson.annotations.SerializedName;
import com.stripe.exception.StripeException;
import com.stripe.net.ApiMode;
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.terminal.ConnectionTokenCreateParams;
import java.util.Map;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;

/**
 * A Connection Token is used by the Stripe Terminal SDK to connect to a reader.
 *
 * 

Related guide: Fleet management */ @Getter @Setter @EqualsAndHashCode(callSuper = false) public class ConnectionToken extends ApiResource { /** * The id of the location that this connection token is scoped to. Note that location scoping only * applies to internet-connected readers. For more details, see the * docs on scoping connection tokens. */ @SerializedName("location") String location; /** * String representing the object's type. Objects of the same type share the same value. * *

Equal to {@code terminal.connection_token}. */ @SerializedName("object") String object; /** Your application should pass this token to the Stripe Terminal SDK. */ @SerializedName("secret") String secret; /** * To connect to a reader the Stripe Terminal SDK needs to retrieve a short-lived connection token * from Stripe, proxied through your server. On your backend, add an endpoint that creates and * returns a connection token. */ public static ConnectionToken create(Map params) throws StripeException { return create(params, (RequestOptions) null); } /** * To connect to a reader the Stripe Terminal SDK needs to retrieve a short-lived connection token * from Stripe, proxied through your server. On your backend, add an endpoint that creates and * returns a connection token. */ public static ConnectionToken create(Map params, RequestOptions options) throws StripeException { String path = "/v1/terminal/connection_tokens"; ApiRequest request = new ApiRequest( BaseAddress.API, ApiResource.RequestMethod.POST, path, params, options, ApiMode.V1); return getGlobalResponseGetter().request(request, ConnectionToken.class); } /** * To connect to a reader the Stripe Terminal SDK needs to retrieve a short-lived connection token * from Stripe, proxied through your server. On your backend, add an endpoint that creates and * returns a connection token. */ public static ConnectionToken create(ConnectionTokenCreateParams params) throws StripeException { return create(params, (RequestOptions) null); } /** * To connect to a reader the Stripe Terminal SDK needs to retrieve a short-lived connection token * from Stripe, proxied through your server. On your backend, add an endpoint that creates and * returns a connection token. */ public static ConnectionToken create(ConnectionTokenCreateParams params, RequestOptions options) throws StripeException { String path = "/v1/terminal/connection_tokens"; ApiResource.checkNullTypedParams(path, params); ApiRequest request = new ApiRequest( BaseAddress.API, ApiResource.RequestMethod.POST, path, ApiRequestParams.paramsToMap(params), options, ApiMode.V1); return getGlobalResponseGetter().request(request, ConnectionToken.class); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy