Class PayoutMethod

java.lang.Object
com.stripe.model.StripeObject
com.stripe.model.v2.moneymanagement.PayoutMethod
All Implemented Interfaces:
HasId, StripeObjectInterface

public class PayoutMethod extends StripeObject implements HasId
  • Constructor Details

    • PayoutMethod

      public PayoutMethod()
  • Method Details

    • getAvailablePayoutSpeeds

      public List<String> getAvailablePayoutSpeeds()
      A set of available payout speeds for this payout method.
    • getBankAccount

      public PayoutMethod.BankAccount getBankAccount()
      The PayoutMethodBankAccount object details.
    • getCard

      public PayoutMethod.Card getCard()
      The PayoutMethodCard object details.
    • getCreated

      public Instant getCreated()
      Created timestamp.
    • getLatestOutboundSetupIntent

      public String getLatestOutboundSetupIntent()
      ID of the underlying active OutboundSetupIntent object, if any.
    • getLivemode

      public Boolean getLivemode()
      Has the value true if the object exists in live mode or the value false if the object exists in test mode.
    • getObject

      public String getObject()
      String representing the object's type. Objects of the same type share the same value of the object field.

      Equal to v2.money_management.payout_method.

    • getType

      public String getType()
      Closed Enum. The type of payout method.

      One of bank_account, or card.

    • getUsageStatus

      public PayoutMethod.UsageStatus getUsageStatus()
      Indicates whether the payout method has met the necessary requirements for outbound money movement.
    • setAvailablePayoutSpeeds

      public void setAvailablePayoutSpeeds(List<String> availablePayoutSpeeds)
      A set of available payout speeds for this payout method.
    • setBankAccount

      public void setBankAccount(PayoutMethod.BankAccount bankAccount)
      The PayoutMethodBankAccount object details.
    • setCard

      public void setCard(PayoutMethod.Card card)
      The PayoutMethodCard object details.
    • setCreated

      public void setCreated(Instant created)
      Created timestamp.
    • setId

      public void setId(String id)
      ID of the PayoutMethod object.
    • setLatestOutboundSetupIntent

      public void setLatestOutboundSetupIntent(String latestOutboundSetupIntent)
      ID of the underlying active OutboundSetupIntent object, if any.
    • setLivemode

      public void setLivemode(Boolean livemode)
      Has the value true if the object exists in live mode or the value false if the object exists in test mode.
    • setObject

      public void setObject(String object)
      String representing the object's type. Objects of the same type share the same value of the object field.

      Equal to v2.money_management.payout_method.

    • setType

      public void setType(String type)
      Closed Enum. The type of payout method.

      One of bank_account, or card.

    • setUsageStatus

      public void setUsageStatus(PayoutMethod.UsageStatus usageStatus)
      Indicates whether the payout method has met the necessary requirements for outbound money movement.
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • canEqual

      protected boolean canEqual(Object other)
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • getId

      public String getId()
      ID of the PayoutMethod object.
      Specified by:
      getId in interface HasId