Class: Stripe::Issuing::Dispute::Evidence

Inherits:
StripeObject show all
Defined in:
lib/stripe/resources/issuing/dispute.rb

Defined Under Namespace

Classes: Canceled, Duplicate, Fraudulent, MerchandiseNotAsDescribed, NoValidAuthorization, NotReceived, Other, ServiceNotAsDescribed

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?, #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

#canceledObject (readonly)

Attribute for field canceled



188
189
190
# File 'lib/stripe/resources/issuing/dispute.rb', line 188

def canceled
  @canceled
end

#duplicateObject (readonly)

Attribute for field duplicate



190
191
192
# File 'lib/stripe/resources/issuing/dispute.rb', line 190

def duplicate
  @duplicate
end

#fraudulentObject (readonly)

Attribute for field fraudulent



192
193
194
# File 'lib/stripe/resources/issuing/dispute.rb', line 192

def fraudulent
  @fraudulent
end

#merchandise_not_as_describedObject (readonly)

Attribute for field merchandise_not_as_described



194
195
196
# File 'lib/stripe/resources/issuing/dispute.rb', line 194

def merchandise_not_as_described
  @merchandise_not_as_described
end

#no_valid_authorizationObject (readonly)

Attribute for field no_valid_authorization



196
197
198
# File 'lib/stripe/resources/issuing/dispute.rb', line 196

def no_valid_authorization
  @no_valid_authorization
end

#not_receivedObject (readonly)

Attribute for field not_received



198
199
200
# File 'lib/stripe/resources/issuing/dispute.rb', line 198

def not_received
  @not_received
end

#otherObject (readonly)

Attribute for field other



200
201
202
# File 'lib/stripe/resources/issuing/dispute.rb', line 200

def other
  @other
end

#reasonObject (readonly)

The reason for filing the dispute. Its value will match the field containing the evidence.



202
203
204
# File 'lib/stripe/resources/issuing/dispute.rb', line 202

def reason
  @reason
end

#service_not_as_describedObject (readonly)

Attribute for field service_not_as_described



204
205
206
# File 'lib/stripe/resources/issuing/dispute.rb', line 204

def service_not_as_described
  @service_not_as_described
end

Class Method Details

.field_remappingsObject



219
220
221
# File 'lib/stripe/resources/issuing/dispute.rb', line 219

def self.field_remappings
  @field_remappings = {}
end

.inner_class_typesObject



206
207
208
209
210
211
212
213
214
215
216
217
# File 'lib/stripe/resources/issuing/dispute.rb', line 206

def self.inner_class_types
  @inner_class_types = {
    canceled: Canceled,
    duplicate: Duplicate,
    fraudulent: Fraudulent,
    merchandise_not_as_described: MerchandiseNotAsDescribed,
    no_valid_authorization: NoValidAuthorization,
    not_received: NotReceived,
    other: Other,
    service_not_as_described: ServiceNotAsDescribed,
  }
end