Class Authorization

java.lang.Object
com.stripe.model.StripeObject
com.stripe.model.financialconnections.Authorization
All Implemented Interfaces:
HasId, StripeObjectInterface

public class Authorization extends StripeObject implements HasId
An Authorization represents the set of credentials used to connect a group of Financial Connections Accounts.
  • Constructor Details

    • Authorization

      public Authorization()
  • Method Details

    • getInstitutionName

      public String getInstitutionName()
      The name of the institution that this authorization belongs to.
    • getLivemode

      public Boolean getLivemode()
      If the object exists in live mode, the value is true. If the object exists in test mode, the value is false.
    • getObject

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

      Equal to financial_connections.authorization.

    • getStatus

      public String getStatus()
      The status of the connection to the Authorization.

      One of active, or inactive.

    • getStatusDetails

      public Authorization.StatusDetails getStatusDetails()
    • setId

      public void setId(String id)
      Unique identifier for the object.
    • setInstitutionName

      public void setInstitutionName(String institutionName)
      The name of the institution that this authorization belongs to.
    • setLivemode

      public void setLivemode(Boolean livemode)
      If the object exists in live mode, the value is true. If the object exists in test mode, the value is false.
    • setObject

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

      Equal to financial_connections.authorization.

    • setStatus

      public void setStatus(String status)
      The status of the connection to the Authorization.

      One of active, or inactive.

    • setStatusDetails

      public void setStatusDetails(Authorization.StatusDetails statusDetails)
    • 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()
      Unique identifier for the object.
      Specified by:
      getId in interface HasId