module SageoneSdk::Client::PaymentStatuses
Represents the payment status of an invoice in Sage One. For example, Paid or Void.
Public Instance Methods
payment_status(id, options = {})
click to toggle source
@return [object] Returns the payment status with the given id.
# File lib/sageone_sdk/client/payment_statuses.rb, line 13 def payment_status(id, options = {}) get "payment_statuses/#{id}", options end
payment_statuses(options = {})
click to toggle source
@return [object] Returns all payment statuses.
# File lib/sageone_sdk/client/payment_statuses.rb, line 8 def payment_statuses(options = {}) get "payment_statuses", options end