class MercadoPago::CustomCheckout::IdentificationType

Attributes

extras[R]
id[R]
name[R]

Public Class Methods

new(id:, name:, **extras) click to toggle source
# File lib/mercadopago/custom_checkout/identification_type.rb, line 6
def initialize(id:, name:, **extras)
  @id = id
  @name = name
  @extras = extras
end

Private Instance Methods

attr_inspect() click to toggle source
# File lib/mercadopago/custom_checkout/identification_type.rb, line 14
def attr_inspect
  [:id, :name, :status]
end