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

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

import com.google.gson.annotations.SerializedName;
import com.stripe.exception.StripeException;
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.net.StripeResponseGetter;
import com.stripe.param.TopupCancelParams;
import com.stripe.param.TopupCreateParams;
import com.stripe.param.TopupListParams;
import com.stripe.param.TopupRetrieveParams;
import com.stripe.param.TopupUpdateParams;
import java.util.Map;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;

/**
 * To top up your Stripe balance, you create a top-up object. You can retrieve individual top-ups,
 * as well as list all top-ups. Top-ups are identified by a unique, random ID.
 *
 * 

Related guide: Topping up your platform * account */ @Getter @Setter @EqualsAndHashCode(callSuper = false) public class Topup extends ApiResource implements MetadataStore, BalanceTransactionSource { /** Amount transferred. */ @SerializedName("amount") Long amount; /** * ID of the balance transaction that describes the impact of this top-up on your account balance. * May not be specified depending on status of top-up. */ @SerializedName("balance_transaction") @Getter(lombok.AccessLevel.NONE) @Setter(lombok.AccessLevel.NONE) ExpandableField balanceTransaction; /** Time at which the object was created. Measured in seconds since the Unix epoch. */ @SerializedName("created") Long created; /** * Three-letter ISO currency code, * in lowercase. Must be a supported currency. */ @SerializedName("currency") String currency; /** An arbitrary string attached to the object. Often useful for displaying to users. */ @SerializedName("description") String description; /** * Date the funds are expected to arrive in your Stripe account for payouts. This factors in * delays like weekends or bank holidays. May not be specified depending on status of top-up. */ @SerializedName("expected_availability_date") Long expectedAvailabilityDate; /** * Error code explaining reason for top-up failure if available (see the errors section for a list of codes). */ @SerializedName("failure_code") String failureCode; /** Message to user further explaining reason for top-up failure if available. */ @SerializedName("failure_message") String failureMessage; /** 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; /** * 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; /** * String representing the object's type. Objects of the same type share the same value. * *

Equal to {@code topup}. */ @SerializedName("object") String object; /** The source field is deprecated. It might not always be present in the API response. */ @SerializedName("source") Source source; /** * Extra information about a top-up. This will appear on your source's bank statement. It must * contain at least one letter. */ @SerializedName("statement_descriptor") String statementDescriptor; /** * The status of the top-up is either {@code canceled}, {@code failed}, {@code pending}, {@code * reversed}, or {@code succeeded}. * *

One of {@code canceled}, {@code failed}, {@code pending}, {@code reversed}, or {@code * succeeded}. */ @SerializedName("status") String status; /** A string that identifies this top-up as part of a group. */ @SerializedName("transfer_group") String transferGroup; /** Get ID of expandable {@code balanceTransaction} object. */ public String getBalanceTransaction() { return (this.balanceTransaction != null) ? this.balanceTransaction.getId() : null; } public void setBalanceTransaction(String id) { this.balanceTransaction = ApiResource.setExpandableFieldId(id, this.balanceTransaction); } /** Get expanded {@code balanceTransaction}. */ public BalanceTransaction getBalanceTransactionObject() { return (this.balanceTransaction != null) ? this.balanceTransaction.getExpanded() : null; } public void setBalanceTransactionObject(BalanceTransaction expandableObject) { this.balanceTransaction = new ExpandableField(expandableObject.getId(), expandableObject); } /** Cancels a top-up. Only pending top-ups can be canceled. */ public Topup cancel() throws StripeException { return cancel((Map) null, (RequestOptions) null); } /** Cancels a top-up. Only pending top-ups can be canceled. */ public Topup cancel(RequestOptions options) throws StripeException { return cancel((Map) null, options); } /** Cancels a top-up. Only pending top-ups can be canceled. */ public Topup cancel(Map params) throws StripeException { return cancel(params, (RequestOptions) null); } /** Cancels a top-up. Only pending top-ups can be canceled. */ public Topup cancel(Map params, RequestOptions options) throws StripeException { String path = String.format("/v1/topups/%s/cancel", ApiResource.urlEncodeId(this.getId())); ApiRequest request = new ApiRequest(BaseAddress.API, ApiResource.RequestMethod.POST, path, params, options); return getResponseGetter().request(request, Topup.class); } /** Cancels a top-up. Only pending top-ups can be canceled. */ public Topup cancel(TopupCancelParams params) throws StripeException { return cancel(params, (RequestOptions) null); } /** Cancels a top-up. Only pending top-ups can be canceled. */ public Topup cancel(TopupCancelParams params, RequestOptions options) throws StripeException { String path = String.format("/v1/topups/%s/cancel", 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, Topup.class); } /** Top up the balance of an account. */ public static Topup create(Map params) throws StripeException { return create(params, (RequestOptions) null); } /** Top up the balance of an account. */ public static Topup create(Map params, RequestOptions options) throws StripeException { String path = "/v1/topups"; ApiRequest request = new ApiRequest(BaseAddress.API, ApiResource.RequestMethod.POST, path, params, options); return getGlobalResponseGetter().request(request, Topup.class); } /** Top up the balance of an account. */ public static Topup create(TopupCreateParams params) throws StripeException { return create(params, (RequestOptions) null); } /** Top up the balance of an account. */ public static Topup create(TopupCreateParams params, RequestOptions options) throws StripeException { String path = "/v1/topups"; ApiResource.checkNullTypedParams(path, params); ApiRequest request = new ApiRequest( BaseAddress.API, ApiResource.RequestMethod.POST, path, ApiRequestParams.paramsToMap(params), options); return getGlobalResponseGetter().request(request, Topup.class); } /** Returns a list of top-ups. */ public static TopupCollection list(Map params) throws StripeException { return list(params, (RequestOptions) null); } /** Returns a list of top-ups. */ public static TopupCollection list(Map params, RequestOptions options) throws StripeException { String path = "/v1/topups"; ApiRequest request = new ApiRequest(BaseAddress.API, ApiResource.RequestMethod.GET, path, params, options); return getGlobalResponseGetter().request(request, TopupCollection.class); } /** Returns a list of top-ups. */ public static TopupCollection list(TopupListParams params) throws StripeException { return list(params, (RequestOptions) null); } /** Returns a list of top-ups. */ public static TopupCollection list(TopupListParams params, RequestOptions options) throws StripeException { String path = "/v1/topups"; ApiResource.checkNullTypedParams(path, params); ApiRequest request = new ApiRequest( BaseAddress.API, ApiResource.RequestMethod.GET, path, ApiRequestParams.paramsToMap(params), options); return getGlobalResponseGetter().request(request, TopupCollection.class); } /** * Retrieves the details of a top-up that has previously been created. Supply the unique top-up ID * that was returned from your previous request, and Stripe will return the corresponding top-up * information. */ public static Topup retrieve(String topup) throws StripeException { return retrieve(topup, (Map) null, (RequestOptions) null); } /** * Retrieves the details of a top-up that has previously been created. Supply the unique top-up ID * that was returned from your previous request, and Stripe will return the corresponding top-up * information. */ public static Topup retrieve(String topup, RequestOptions options) throws StripeException { return retrieve(topup, (Map) null, options); } /** * Retrieves the details of a top-up that has previously been created. Supply the unique top-up ID * that was returned from your previous request, and Stripe will return the corresponding top-up * information. */ public static Topup retrieve(String topup, Map params, RequestOptions options) throws StripeException { String path = String.format("/v1/topups/%s", ApiResource.urlEncodeId(topup)); ApiRequest request = new ApiRequest(BaseAddress.API, ApiResource.RequestMethod.GET, path, params, options); return getGlobalResponseGetter().request(request, Topup.class); } /** * Retrieves the details of a top-up that has previously been created. Supply the unique top-up ID * that was returned from your previous request, and Stripe will return the corresponding top-up * information. */ public static Topup retrieve(String topup, TopupRetrieveParams params, RequestOptions options) throws StripeException { String path = String.format("/v1/topups/%s", ApiResource.urlEncodeId(topup)); ApiResource.checkNullTypedParams(path, params); ApiRequest request = new ApiRequest( BaseAddress.API, ApiResource.RequestMethod.GET, path, ApiRequestParams.paramsToMap(params), options); return getGlobalResponseGetter().request(request, Topup.class); } /** Updates the metadata of a top-up. Other top-up details are not editable by design. */ @Override public Topup update(Map params) throws StripeException { return update(params, (RequestOptions) null); } /** Updates the metadata of a top-up. Other top-up details are not editable by design. */ @Override public Topup update(Map params, RequestOptions options) throws StripeException { String path = String.format("/v1/topups/%s", ApiResource.urlEncodeId(this.getId())); ApiRequest request = new ApiRequest(BaseAddress.API, ApiResource.RequestMethod.POST, path, params, options); return getResponseGetter().request(request, Topup.class); } /** Updates the metadata of a top-up. Other top-up details are not editable by design. */ public Topup update(TopupUpdateParams params) throws StripeException { return update(params, (RequestOptions) null); } /** Updates the metadata of a top-up. Other top-up details are not editable by design. */ public Topup update(TopupUpdateParams params, RequestOptions options) throws StripeException { String path = String.format("/v1/topups/%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, Topup.class); } @Override public void setResponseGetter(StripeResponseGetter responseGetter) { super.setResponseGetter(responseGetter); trySetResponseGetter(balanceTransaction, responseGetter); trySetResponseGetter(source, responseGetter); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy