Repository URL to install this package:
|
Version:
0.1.8 ▾
|
class Quickbooks::Model::BatchResponse < Quickbooks::Model::BaseModel
class BatchItemResponse
include ROXML
xml_name "BatchItemResponse"
xml_accessor :bId, :from => "@bId"
xml_accessor :fault, :from => 'Fault', :as => Quickbooks::Model::Fault
# Supported Entities
xml_accessor :item, from: "Item", as: Quickbooks::Model::Item
xml_accessor :account, from: "Account", as: Quickbooks::Model::Account
xml_accessor :invoice, from: "Invoice", as: Quickbooks::Model::Invoice
xml_accessor :customer, from: "Customer", as: Quickbooks::Model::Customer
xml_accessor :bill, from: "Bill", as: Quickbooks::Model::Bill
xml_accessor :sales_receipt, from: "SalesReceipt", as: Quickbooks::Model::SalesReceipt
xml_accessor :bill_payment, from: "BillPayment", as: Quickbooks::Model::BillPayment
xml_accessor :purchase, from: "Purchase", as: Quickbooks::Model::Purchase
xml_accessor :credit_memo, from: "CreditMemo", as: Quickbooks::Model::CreditMemo
xml_accessor :payment, from: "Payment", as: Quickbooks::Model::Payment
def fault?
fault
end
end
xml_name "IntuitResponse"
xml_accessor :response_items, :from => :BatchItemResponse, as: [Quickbooks::Model::BatchResponse::BatchItemResponse]
end