Class: PayPal::SDK::REST::DataTypes::PaymentInstruction

Inherits:
Base show all
Includes:
RequestDataType
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 included from RequestDataType

#api, api, #error=, included

Methods included from SetAPI

#client_id=, #client_secret=, #set_config, #token=

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

.find(resource_id) ⇒ Object

Raises:

  • (ArgumentError)


1091
1092
1093
1094
1095
# File 'lib/paypal-sdk/rest/data_types.rb', line 1091

def find(resource_id)
  raise ArgumentError.new("id required") if resource_id.to_s.strip.empty?
  path = "v1/payments/payments/payment/#{resource_id}/payment-instruction"
  self.new(api.get(path))
end

.load_membersObject



1078
1079
1080
1081
1082
1083
1084
1085
1086
# File 'lib/paypal-sdk/rest/data_types.rb', line 1078

def self.load_members
  object_of :reference_number, String
  object_of :instruction_type, String
  object_of :recipient_banking_instruction, RecipientBankingInstruction
  object_of :amount, Currency
  object_of :payment_due_date, String
  object_of :note, String
  array_of  :links, Links
end