Class: Stripe::V2::MoneyManagement::InboundTransfer::TransferHistory

Inherits:
StripeObject
  • Object
show all
Defined in:
lib/stripe/resources/v2/money_management/inbound_transfer.rb

Defined Under Namespace

Classes: BankDebitFailed, BankDebitReturned

Constant Summary

Constants inherited from StripeObject

StripeObject::RESERVED_FIELD_NAMES

Instance Attribute Summary collapse

Attributes inherited from StripeObject

#last_response

Class Method Summary collapse

Methods inherited from StripeObject

#==, #[], #[]=, #_get_inner_class_type, additive_object_param, additive_object_param?, #as_json, construct_from, #deleted?, #dirty!, #each, #eql?, field_encodings, #hash, #initialize, #inspect, #keys, #marshal_dump, #marshal_load, protected_fields, #serialize_params, #to_hash, #to_json, #to_s, #update_attributes, #values

Constructor Details

This class inherits a constructor from Stripe::StripeObject

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Stripe::StripeObject

Instance Attribute Details

#bank_debit_failedObject (readonly)

The history entry for a failed InboundTransfer.



86
87
88
# File 'lib/stripe/resources/v2/money_management/inbound_transfer.rb', line 86

def bank_debit_failed
  @bank_debit_failed
end

#bank_debit_processingObject (readonly)

The history entry for a processing InboundTransfer.



88
89
90
# File 'lib/stripe/resources/v2/money_management/inbound_transfer.rb', line 88

def bank_debit_processing
  @bank_debit_processing
end

#bank_debit_queuedObject (readonly)

The history entry for a queued InboundTransfer.



90
91
92
# File 'lib/stripe/resources/v2/money_management/inbound_transfer.rb', line 90

def bank_debit_queued
  @bank_debit_queued
end

#bank_debit_returnedObject (readonly)

The history entry for a returned InboundTransfer.



92
93
94
# File 'lib/stripe/resources/v2/money_management/inbound_transfer.rb', line 92

def bank_debit_returned
  @bank_debit_returned
end

#bank_debit_succeededObject (readonly)

The history entry for a succeeded InboundTransfer.



94
95
96
# File 'lib/stripe/resources/v2/money_management/inbound_transfer.rb', line 94

def bank_debit_succeeded
  @bank_debit_succeeded
end

#createdObject (readonly)

Creation time of the HistoryEntry in RFC 3339 format and UTC.



96
97
98
# File 'lib/stripe/resources/v2/money_management/inbound_transfer.rb', line 96

def created
  @created
end

#effective_atObject (readonly)

Effective at time of the HistoryEntry in RFC 3339 format and UTC.



98
99
100
# File 'lib/stripe/resources/v2/money_management/inbound_transfer.rb', line 98

def effective_at
  @effective_at
end

#idObject (readonly)

A unique ID for the HistoryEntry.



100
101
102
# File 'lib/stripe/resources/v2/money_management/inbound_transfer.rb', line 100

def id
  @id
end

#levelObject (readonly)

Open Enum. The Level of the HistoryEntry.



102
103
104
# File 'lib/stripe/resources/v2/money_management/inbound_transfer.rb', line 102

def level
  @level
end

#typeObject (readonly)

Open Enum. The type of the HistoryEntry.



104
105
106
# File 'lib/stripe/resources/v2/money_management/inbound_transfer.rb', line 104

def type
  @type
end

Class Method Details

.field_remappingsObject



113
114
115
# File 'lib/stripe/resources/v2/money_management/inbound_transfer.rb', line 113

def self.field_remappings
  @field_remappings = {}
end

.inner_class_typesObject



106
107
108
109
110
111
# File 'lib/stripe/resources/v2/money_management/inbound_transfer.rb', line 106

def self.inner_class_types
  @inner_class_types = {
    bank_debit_failed: BankDebitFailed,
    bank_debit_returned: BankDebitReturned,
  }
end