Class: Stripe::Issuing::Dispute::UpdateParams::Evidence
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Issuing::Dispute::UpdateParams::Evidence
- Defined in:
- lib/stripe/resources/issuing/dispute.rb
Defined Under Namespace
Classes: Canceled, Duplicate, Fraudulent, MerchandiseNotAsDescribed, NoValidAuthorization, NotReceived, Other, ServiceNotAsDescribed
Instance Attribute Summary collapse
-
#canceled ⇒ Object
Evidence provided when ‘reason` is ’canceled’.
-
#duplicate ⇒ Object
Evidence provided when ‘reason` is ’duplicate’.
-
#fraudulent ⇒ Object
Evidence provided when ‘reason` is ’fraudulent’.
-
#merchandise_not_as_described ⇒ Object
Evidence provided when ‘reason` is ’merchandise_not_as_described’.
-
#no_valid_authorization ⇒ Object
Evidence provided when ‘reason` is ’no_valid_authorization’.
-
#not_received ⇒ Object
Evidence provided when ‘reason` is ’not_received’.
-
#other ⇒ Object
Evidence provided when ‘reason` is ’other’.
-
#reason ⇒ Object
The reason for filing the dispute.
-
#service_not_as_described ⇒ Object
Evidence provided when ‘reason` is ’service_not_as_described’.
Instance Method Summary collapse
-
#initialize(canceled: nil, duplicate: nil, fraudulent: nil, merchandise_not_as_described: nil, no_valid_authorization: nil, not_received: nil, other: nil, reason: nil, service_not_as_described: nil) ⇒ Evidence
constructor
A new instance of Evidence.
Methods inherited from RequestParams
Constructor Details
#initialize(canceled: nil, duplicate: nil, fraudulent: nil, merchandise_not_as_described: nil, no_valid_authorization: nil, not_received: nil, other: nil, reason: nil, service_not_as_described: nil) ⇒ Evidence
Returns a new instance of Evidence.
867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 |
# File 'lib/stripe/resources/issuing/dispute.rb', line 867 def initialize( canceled: nil, duplicate: nil, fraudulent: nil, merchandise_not_as_described: nil, no_valid_authorization: nil, not_received: nil, other: nil, reason: nil, service_not_as_described: nil ) @canceled = canceled @duplicate = duplicate @fraudulent = fraudulent @merchandise_not_as_described = merchandise_not_as_described @no_valid_authorization = @not_received = not_received @other = other @reason = reason @service_not_as_described = service_not_as_described end |
Instance Attribute Details
#canceled ⇒ Object
Evidence provided when ‘reason` is ’canceled’.
841 842 843 |
# File 'lib/stripe/resources/issuing/dispute.rb', line 841 def canceled @canceled end |
#duplicate ⇒ Object
Evidence provided when ‘reason` is ’duplicate’.
844 845 846 |
# File 'lib/stripe/resources/issuing/dispute.rb', line 844 def duplicate @duplicate end |
#fraudulent ⇒ Object
Evidence provided when ‘reason` is ’fraudulent’.
847 848 849 |
# File 'lib/stripe/resources/issuing/dispute.rb', line 847 def fraudulent @fraudulent end |
#merchandise_not_as_described ⇒ Object
Evidence provided when ‘reason` is ’merchandise_not_as_described’.
850 851 852 |
# File 'lib/stripe/resources/issuing/dispute.rb', line 850 def merchandise_not_as_described @merchandise_not_as_described end |
#no_valid_authorization ⇒ Object
Evidence provided when ‘reason` is ’no_valid_authorization’.
853 854 855 |
# File 'lib/stripe/resources/issuing/dispute.rb', line 853 def @no_valid_authorization end |
#not_received ⇒ Object
Evidence provided when ‘reason` is ’not_received’.
856 857 858 |
# File 'lib/stripe/resources/issuing/dispute.rb', line 856 def not_received @not_received end |
#other ⇒ Object
Evidence provided when ‘reason` is ’other’.
859 860 861 |
# File 'lib/stripe/resources/issuing/dispute.rb', line 859 def other @other end |
#reason ⇒ Object
The reason for filing the dispute. The evidence should be submitted in the field of the same name.
862 863 864 |
# File 'lib/stripe/resources/issuing/dispute.rb', line 862 def reason @reason end |
#service_not_as_described ⇒ Object
Evidence provided when ‘reason` is ’service_not_as_described’.
865 866 867 |
# File 'lib/stripe/resources/issuing/dispute.rb', line 865 def service_not_as_described @service_not_as_described end |