Class RecipientVerification

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

public class RecipientVerification extends StripeObject implements HasId
RecipientVerification represents a verification of recipient you intend to send funds to.
  • Constructor Details

    • RecipientVerification

      public RecipientVerification()
  • Method Details

    • getConsumedBy

      public String getConsumedBy()
      The OBP/OBT ID that consumed this verification, present if one is successfully created.
    • getCreated

      public Instant getCreated()
      Time at which the RecipientVerification was created. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
    • getExpiresAt

      public Instant getExpiresAt()
      Time at which the RecipientVerification expires, 5 minutes after the creation. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
    • 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.
    • getMatchResult

      public String getMatchResult()
      Closed Enum. Match level of the RecipientVerification: match, close_match, no_match, unavailable.

      One of close_match, match, no_match, or unavailable.

    • getMatchResultDetails

      public RecipientVerification.MatchResultDetails getMatchResultDetails()
      Details for the match result.
    • 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.recipient_verification.

    • getStatus

      public String getStatus()
      Closed Enum. Current status of the RecipientVerification: verified, consumed, expired, awaiting_acknowledgement, acknowledged.

      One of acknowledged, awaiting_acknowledgement, consumed, expired, or verified.

    • getStatusTransitions

      public RecipientVerification.StatusTransitions getStatusTransitions()
      Hash containing timestamps of when the object transitioned to a particular status.
    • setConsumedBy

      public void setConsumedBy(String consumedBy)
      The OBP/OBT ID that consumed this verification, present if one is successfully created.
    • setCreated

      public void setCreated(Instant created)
      Time at which the RecipientVerification was created. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
    • setExpiresAt

      public void setExpiresAt(Instant expiresAt)
      Time at which the RecipientVerification expires, 5 minutes after the creation. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
    • setId

      public void setId(String id)
      The ID of the RecipientVerification.
    • 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.
    • setMatchResult

      public void setMatchResult(String matchResult)
      Closed Enum. Match level of the RecipientVerification: match, close_match, no_match, unavailable.

      One of close_match, match, no_match, or unavailable.

    • setMatchResultDetails

      public void setMatchResultDetails(RecipientVerification.MatchResultDetails matchResultDetails)
      Details for the match result.
    • 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.recipient_verification.

    • setStatus

      public void setStatus(String status)
      Closed Enum. Current status of the RecipientVerification: verified, consumed, expired, awaiting_acknowledgement, acknowledged.

      One of acknowledged, awaiting_acknowledgement, consumed, expired, or verified.

    • setStatusTransitions

      public void setStatusTransitions(RecipientVerification.StatusTransitions statusTransitions)
      Hash containing timestamps of when the object transitioned to a particular status.
    • 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()
      The ID of the RecipientVerification.
      Specified by:
      getId in interface HasId