class ActiveNetsuite::GetPostingTransactionSummaryResult

{urn:core_2013_2.platform.webservices.netsuite.com}GetPostingTransactionSummaryResult

status - ActiveNetsuite::Status
totalRecords - SOAP::SOAPInt
pageSize - SOAP::SOAPInt
totalPages - SOAP::SOAPInt
pageIndex - SOAP::SOAPInt
postingTransactionSummaryList - ActiveNetsuite::PostingTransactionSummaryList

Attributes

pageIndex[RW]
pageSize[RW]
postingTransactionSummaryList[RW]
status[RW]
totalPages[RW]
totalRecords[RW]

Public Class Methods

new(status = nil, totalRecords = nil, pageSize = nil, totalPages = nil, pageIndex = nil, postingTransactionSummaryList = nil) click to toggle source
# File lib/activenetsuite/soap/default.rb, line 48297
def initialize(status = nil, totalRecords = nil, pageSize = nil, totalPages = nil, pageIndex = nil, postingTransactionSummaryList = nil)
  @status = status
  @totalRecords = totalRecords
  @pageSize = pageSize
  @totalPages = totalPages
  @pageIndex = pageIndex
  @postingTransactionSummaryList = postingTransactionSummaryList
end