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

com.stripe.model.ReserveTransaction 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 lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;

@Getter
@Setter
@EqualsAndHashCode(callSuper = false)
public class ReserveTransaction extends StripeObject implements BalanceTransactionSource {
  @SerializedName("amount")
  Long amount;

  /**
   * 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;

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

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

Equal to {@code reserve_transaction}. */ @SerializedName("object") String object; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy