Increase.Cards.Card.AuthorizationControls (Increase v1.0.0)

Copy Markdown View Source

Controls that restrict how this card can be used.

Fields

  • merchant_acceptor_identifier - Restricts which Merchant Acceptor IDs are allowed or blocked for authorizations on this card.
  • merchant_category_code - Restricts which Merchant Category Codes are allowed or blocked for authorizations on this card.
  • merchant_country - Restricts which merchant countries are allowed or blocked for authorizations on this card.
  • usage - Controls how many times this card can be used.

Summary

Types

t()

@type t() :: %Increase.Cards.Card.AuthorizationControls{
  merchant_acceptor_identifier:
    Increase.Cards.Card.AuthorizationControls.MerchantAcceptorIdentifier.t()
    | nil,
  merchant_category_code:
    Increase.Cards.Card.AuthorizationControls.MerchantCategoryCode.t() | nil,
  merchant_country:
    Increase.Cards.Card.AuthorizationControls.MerchantCountry.t() | nil,
  usage: Increase.Cards.Card.AuthorizationControls.Usage.t() | nil
}