Class: PayPal::SDK::REST::DataTypes::Dispute

Inherits:
Base show all
Defined in:
lib/paypal-sdk/rest/data_types.rb

Constant Summary

Constants inherited from Core::API::DataTypes::Base

Core::API::DataTypes::Base::ContentKey, Core::API::DataTypes::Base::HashOptions

Instance Attribute Summary

Attributes inherited from Base

#error, #header, #request_id

Class Method Summary collapse

Methods inherited from Base

#http_header, #merge!, #raise_error!, raise_on_api_error, #success?

Methods inherited from Core::API::DataTypes::Base

add_attribute, add_member, array_of, #convert_array, #convert_object, define_alias_methods, #hash_key, #initialize, #member_names, members, #members, #merge!, object_of, #set, #skip_value?, snakecase, #to_hash, #value_to_hash

Methods included from Core::Logging

#log_event, #logger, logger, logger=

Constructor Details

This class inherits a constructor from PayPal::SDK::Core::API::DataTypes::Base

Class Method Details

.load_membersObject



2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
# File 'lib/paypal-sdk/rest/data_types.rb', line 2501

def self.load_members
  object_of :dispute_id, String
  object_of :create_time, String
  object_of :update_time, String
  array_of :disputed_transactions, TransactionInfo
  object_of :reason, String
  object_of :status, String
  object_of :dispute_amount, Money
  object_of :external_reason_code, String
  object_of :dispute_outcome, DisputeOutcome
  object_of :dispute_life_cycle_stage, String
  object_of :dispute_channel, String
  array_of :messages, Messages
  object_of :buyer_response_due_date, String
  object_of :seller_response_due_date, String
  object_of :offer, Offer
  array_of  :links, Links
end