GET | /portal/call-history |
---|
import Foundation
import ServiceStack
public class AppGetCallHistory : ListRequest<SessionInfo>
{
public var accountId:String?
public var customerId:String?
required public init(){ super.init() }
private enum CodingKeys : String, CodingKey {
case accountId
case customerId
}
required public init(from decoder: Decoder) throws {
try super.init(from: decoder)
let container = try decoder.container(keyedBy: CodingKeys.self)
accountId = try container.decodeIfPresent(String.self, forKey: .accountId)
customerId = try container.decodeIfPresent(String.self, forKey: .customerId)
}
public override func encode(to encoder: Encoder) throws {
try super.encode(to: encoder)
var container = encoder.container(keyedBy: CodingKeys.self)
if accountId != nil { try container.encode(accountId, forKey: .accountId) }
if customerId != nil { try container.encode(customerId, forKey: .customerId) }
}
}
public class ListRequest<T : Codable> : IGet, Codable
{
/**
* The page of data to retrieve
*/
// @ApiMember(Description="The page of data to retrieve")
public var page:Int?
/**
* If you want all objects to be returned. This should be used with care
*/
// @ApiMember(Description="If you want all objects to be returned. This should be used with care")
public var all:Bool?
/**
* The number per page to retrieve
*/
// @ApiMember(Description="The number per page to retrieve")
public var countPerPage:Int?
/**
* Specific IDs
*/
// @ApiMember(Description="Specific IDs")
public var specificIds:[String] = []
/**
* Specify a sort field
*/
// @ApiMember(Description="Specify a sort field")
public var sortField:String?
/**
* Specify a sort order
*/
// @ApiMember(Description="Specify a sort order")
public var sortOrder:SortOrders?
/**
* Disables total / page counts - improves performance. Returns only data. If there is no more data, Items will be empty array
*/
// @ApiMember(Description="Disables total / page counts - improves performance. Returns only data. If there is no more data, Items will be empty array")
public var simplifiedPaging:Bool?
required public init(){}
}
public enum SortOrders : String, Codable
{
case Ascend
case Descend
}
public class SessionInfo : EntityInfo
{
/**
* The state of the session
*/
// @ApiMember(Description="The state of the session")
public var dialState:SessionDialState?
/**
* The call state of the session
*/
// @ApiMember(Description="The call state of the session")
public var callState:SessionCallState?
/**
* The queue state of the session
*/
// @ApiMember(Description="The queue state of the session")
public var queueState:SessionQueueStates?
/**
* The ID of the account associated with the flow
*/
// @ApiMember(Description="The ID of the account associated with the flow")
public var accountId:String?
/**
* The name of the account associated with the session
*/
// @ApiMember(Description="The name of the account associated with the session")
public var accountName:String?
/**
* The ID of the customer this session is associated with
*/
// @ApiMember(Description="The ID of the customer this session is associated with")
public var customerId:String?
/**
* The customer breadcrumb this session is associated with
*/
// @ApiMember(Description="The customer breadcrumb this session is associated with")
public var customerBreadcrumb:[CustomerBreadcrumb] = []
/**
* The name of the customer this session is associated with
*/
// @ApiMember(Description="The name of the customer this session is associated with")
public var customerName:String?
/**
* The ID of the endpoint associated with this session
*/
// @ApiMember(Description="The ID of the endpoint associated with this session")
public var endpointId:String?
/**
* The name of the endpoint associated with this session
*/
// @ApiMember(Description="The name of the endpoint associated with this session")
public var endpointName:String?
/**
* The date the call completed
*/
// @ApiMember(Description="The date the call completed")
public var dateCompleted:String?
/**
* The destination of the session (e.g. what was entered into the Dial box)
*/
// @ApiMember(Description="The destination of the session (e.g. what was entered into the Dial box)")
public var destination:String?
/**
* The to address if any
*/
// @ApiMember(Description="The to address if any")
public var toAddress:String?
/**
* The from address if any
*/
// @ApiMember(Description="The from address if any")
public var fromAddress:String?
/**
* The from name if any
*/
// @ApiMember(Description="The from name if any")
public var fromName:String?
/**
* Answered by name (if any)
*/
// @ApiMember(Description="Answered by name (if any)")
public var answeredByName:String?
/**
* The ID of the queue member assigned to this call
*/
// @ApiMember(Description="The ID of the queue member assigned to this call")
public var queueMemberId:String?
/**
* The flow channel
*/
// @ApiMember(Description="The flow channel")
public var channel:FlowChannels?
/**
* Has the session ended
*/
// @ApiMember(Description="Has the session ended")
public var ended:Bool?
/**
* The outcome of the call
*/
// @ApiMember(Description="The outcome of the call")
public var outcome:String?
/**
* The twilio Call SID of this session
*/
// @ApiMember(Description="The twilio Call SID of this session")
public var callSid:String?
/**
* Any console data for this session
*/
// @ApiMember(Description="Any console data for this session")
public var consoleData:String?
/**
* The name of the hold queue for this call
*/
// @ApiMember(Description="The name of the hold queue for this call")
public var holdQueueName:String?
/**
* The user ID who put this call on hold
*/
// @ApiMember(Description="The user ID who put this call on hold")
public var heldByUserId:String?
/**
* The reason for the hold
*/
// @ApiMember(Description="The reason for the hold")
public var holdReason:SessionHoldReasons?
/**
* The SID of the conference if in a conference call
*/
// @ApiMember(Description="The SID of the conference if in a conference call")
public var conferenceSid:String?
/**
* The display name for this session
*/
// @ApiMember(Description="The display name for this session")
public var displayName:String?
/**
* The log entries for this session
*/
// @ApiMember(Description="The log entries for this session")
public var log:[SessionLogInfo] = []
/**
* The members of this session
*/
// @ApiMember(Description="The members of this session")
public var members:[SessionMemberInfo] = []
/**
* The callback number (typically used for SIP to User calls)
*/
// @ApiMember(Description="The callback number (typically used for SIP to User calls)")
public var callbackNumber:String?
/**
* The ID of the endpoint that answered
*/
// @ApiMember(Description="The ID of the endpoint that answered")
public var answeredById:String?
/**
* Is this session incoming or outgoing?
*/
// @ApiMember(Description="Is this session incoming or outgoing?")
public var direction:SessionDirections?
/**
* The phone number that this session is coming from (used with SMS chats)
*/
// @ApiMember(Description="The phone number that this session is coming from (used with SMS chats)")
public var fromPhoneNumber:String?
/**
* The Call SID of the most recently added conference participant
*/
// @ApiMember(Description="The Call SID of the most recently added conference participant")
public var mostRecentParticipantCallSid:String?
/**
* Was this session missed?
*/
// @ApiMember(Description="Was this session missed?")
public var wasMissed:Bool?
/**
* The ring queue that the call is currently in
*/
// @ApiMember(Description="The ring queue that the call is currently in")
public var ringQueueId:String?
required public init(){ super.init() }
private enum CodingKeys : String, CodingKey {
case dialState
case callState
case queueState
case accountId
case accountName
case customerId
case customerBreadcrumb
case customerName
case endpointId
case endpointName
case dateCompleted
case destination
case toAddress
case fromAddress
case fromName
case answeredByName
case queueMemberId
case channel
case ended
case outcome
case callSid
case consoleData
case holdQueueName
case heldByUserId
case holdReason
case conferenceSid
case displayName
case log
case members
case callbackNumber
case answeredById
case direction
case fromPhoneNumber
case mostRecentParticipantCallSid
case wasMissed
case ringQueueId
}
required public init(from decoder: Decoder) throws {
try super.init(from: decoder)
let container = try decoder.container(keyedBy: CodingKeys.self)
dialState = try container.decodeIfPresent(SessionDialState.self, forKey: .dialState)
callState = try container.decodeIfPresent(SessionCallState.self, forKey: .callState)
queueState = try container.decodeIfPresent(SessionQueueStates.self, forKey: .queueState)
accountId = try container.decodeIfPresent(String.self, forKey: .accountId)
accountName = try container.decodeIfPresent(String.self, forKey: .accountName)
customerId = try container.decodeIfPresent(String.self, forKey: .customerId)
customerBreadcrumb = try container.decodeIfPresent([CustomerBreadcrumb].self, forKey: .customerBreadcrumb) ?? []
customerName = try container.decodeIfPresent(String.self, forKey: .customerName)
endpointId = try container.decodeIfPresent(String.self, forKey: .endpointId)
endpointName = try container.decodeIfPresent(String.self, forKey: .endpointName)
dateCompleted = try container.decodeIfPresent(String.self, forKey: .dateCompleted)
destination = try container.decodeIfPresent(String.self, forKey: .destination)
toAddress = try container.decodeIfPresent(String.self, forKey: .toAddress)
fromAddress = try container.decodeIfPresent(String.self, forKey: .fromAddress)
fromName = try container.decodeIfPresent(String.self, forKey: .fromName)
answeredByName = try container.decodeIfPresent(String.self, forKey: .answeredByName)
queueMemberId = try container.decodeIfPresent(String.self, forKey: .queueMemberId)
channel = try container.decodeIfPresent(FlowChannels.self, forKey: .channel)
ended = try container.decodeIfPresent(Bool.self, forKey: .ended)
outcome = try container.decodeIfPresent(String.self, forKey: .outcome)
callSid = try container.decodeIfPresent(String.self, forKey: .callSid)
consoleData = try container.decodeIfPresent(String.self, forKey: .consoleData)
holdQueueName = try container.decodeIfPresent(String.self, forKey: .holdQueueName)
heldByUserId = try container.decodeIfPresent(String.self, forKey: .heldByUserId)
holdReason = try container.decodeIfPresent(SessionHoldReasons.self, forKey: .holdReason)
conferenceSid = try container.decodeIfPresent(String.self, forKey: .conferenceSid)
displayName = try container.decodeIfPresent(String.self, forKey: .displayName)
log = try container.decodeIfPresent([SessionLogInfo].self, forKey: .log) ?? []
members = try container.decodeIfPresent([SessionMemberInfo].self, forKey: .members) ?? []
callbackNumber = try container.decodeIfPresent(String.self, forKey: .callbackNumber)
answeredById = try container.decodeIfPresent(String.self, forKey: .answeredById)
direction = try container.decodeIfPresent(SessionDirections.self, forKey: .direction)
fromPhoneNumber = try container.decodeIfPresent(String.self, forKey: .fromPhoneNumber)
mostRecentParticipantCallSid = try container.decodeIfPresent(String.self, forKey: .mostRecentParticipantCallSid)
wasMissed = try container.decodeIfPresent(Bool.self, forKey: .wasMissed)
ringQueueId = try container.decodeIfPresent(String.self, forKey: .ringQueueId)
}
public override func encode(to encoder: Encoder) throws {
try super.encode(to: encoder)
var container = encoder.container(keyedBy: CodingKeys.self)
if dialState != nil { try container.encode(dialState, forKey: .dialState) }
if callState != nil { try container.encode(callState, forKey: .callState) }
if queueState != nil { try container.encode(queueState, forKey: .queueState) }
if accountId != nil { try container.encode(accountId, forKey: .accountId) }
if accountName != nil { try container.encode(accountName, forKey: .accountName) }
if customerId != nil { try container.encode(customerId, forKey: .customerId) }
if customerBreadcrumb.count > 0 { try container.encode(customerBreadcrumb, forKey: .customerBreadcrumb) }
if customerName != nil { try container.encode(customerName, forKey: .customerName) }
if endpointId != nil { try container.encode(endpointId, forKey: .endpointId) }
if endpointName != nil { try container.encode(endpointName, forKey: .endpointName) }
if dateCompleted != nil { try container.encode(dateCompleted, forKey: .dateCompleted) }
if destination != nil { try container.encode(destination, forKey: .destination) }
if toAddress != nil { try container.encode(toAddress, forKey: .toAddress) }
if fromAddress != nil { try container.encode(fromAddress, forKey: .fromAddress) }
if fromName != nil { try container.encode(fromName, forKey: .fromName) }
if answeredByName != nil { try container.encode(answeredByName, forKey: .answeredByName) }
if queueMemberId != nil { try container.encode(queueMemberId, forKey: .queueMemberId) }
if channel != nil { try container.encode(channel, forKey: .channel) }
if ended != nil { try container.encode(ended, forKey: .ended) }
if outcome != nil { try container.encode(outcome, forKey: .outcome) }
if callSid != nil { try container.encode(callSid, forKey: .callSid) }
if consoleData != nil { try container.encode(consoleData, forKey: .consoleData) }
if holdQueueName != nil { try container.encode(holdQueueName, forKey: .holdQueueName) }
if heldByUserId != nil { try container.encode(heldByUserId, forKey: .heldByUserId) }
if holdReason != nil { try container.encode(holdReason, forKey: .holdReason) }
if conferenceSid != nil { try container.encode(conferenceSid, forKey: .conferenceSid) }
if displayName != nil { try container.encode(displayName, forKey: .displayName) }
if log.count > 0 { try container.encode(log, forKey: .log) }
if members.count > 0 { try container.encode(members, forKey: .members) }
if callbackNumber != nil { try container.encode(callbackNumber, forKey: .callbackNumber) }
if answeredById != nil { try container.encode(answeredById, forKey: .answeredById) }
if direction != nil { try container.encode(direction, forKey: .direction) }
if fromPhoneNumber != nil { try container.encode(fromPhoneNumber, forKey: .fromPhoneNumber) }
if mostRecentParticipantCallSid != nil { try container.encode(mostRecentParticipantCallSid, forKey: .mostRecentParticipantCallSid) }
if wasMissed != nil { try container.encode(wasMissed, forKey: .wasMissed) }
if ringQueueId != nil { try container.encode(ringQueueId, forKey: .ringQueueId) }
}
}
public class EntityInfo : Codable
{
/**
* The ID of the object
*/
// @ApiMember(Description="The ID of the object")
public var id:String?
/**
* The date the object was created
*/
// @ApiMember(Description="The date the object was created")
public var dateCreated:String?
/**
* The date the object was last modified
*/
// @ApiMember(Description="The date the object was last modified")
public var dateLastModified:String?
/**
* The user that created this object
*/
// @ApiMember(Description="The user that created this object")
public var createdBy:String?
/**
* The user that last modified this object
*/
// @ApiMember(Description="The user that last modified this object")
public var lastModifiedBy:String?
required public init(){}
}
public enum SessionDialState : String, Codable
{
case None
case Active
}
public enum SessionCallState : String, Codable
{
case Disconnected
case Ringing
case Connected
case Hold
case Passive
}
public enum SessionQueueStates : String, Codable
{
case None
case Queued
case Ringing
case Connected
case Hold
case Disconnected
}
public class CustomerBreadcrumb : Codable
{
public var id:String?
public var name:String?
required public init(){}
}
public enum FlowChannels : String, Codable
{
case Voice
case Chat
case Fax
}
public enum SessionHoldReasons : String, Codable
{
case None
case Transferring
}
public class SessionLogInfo : Codable
{
public var date:String?
public var message:String?
required public init(){}
}
public class SessionMemberInfo : Codable
{
public var identity:String?
public var endpointId:String?
public var displayName:String?
public var isOriginalMember:Bool?
public var avatarUrl:String?
public var applicationData:[String:String] = [:]
public var callState:SessionMemberCallState?
public var role:SessionMemberRoles?
public var callSid:String?
public var muted:Bool?
required public init(){}
}
public enum SessionMemberCallState : String, Codable
{
case None
case Ringing
case Connected
case Hold
}
public enum SessionMemberRoles : String, Codable
{
case None
case Caller
case Agent
case Transfer
}
public enum SessionDirections : String, Codable
{
case Incoming
case Outgoing
}
public class ListResponse<AccountInfo : Codable> : Codable
{
/**
* The items
*/
// @ApiMember(Description="The items")
public var items:[AccountInfo] = []
/**
* The total number of items
*/
// @ApiMember(Description="The total number of items")
public var totalCount:Int?
/**
* The total number of pages
*/
// @ApiMember(Description="The total number of pages")
public var totalPages:Int?
/**
* Are there more pages of items? Used with simplified paging
*/
// @ApiMember(Description="Are there more pages of items? Used with simplified paging")
public var hasMorePages:Bool?
required public init(){}
}
public class AccountInfo : EntityInfo
{
/**
* The name of this account
*/
// @ApiMember(Description="The name of this account")
public var name:String?
/**
* The ID of this account's parent
*/
// @ApiMember(Description="The ID of this account's parent")
public var parentAccountId:String?
/**
* The twilio account SID
*/
// @ApiMember(Description="The twilio account SID")
public var twilioAccountSid:String?
/**
* The ancestors of this account. Useful for breadcrumbs
*/
// @ApiMember(Description="The ancestors of this account. Useful for breadcrumbs")
public var ancestorIds:[String] = []
/**
* The max number of phone numbers this account can have
*/
// @ApiMember(Description="The max number of phone numbers this account can have")
public var maxPhoneNumbers:Int?
/**
* This account is BYOA
*/
// @ApiMember(Description="This account is BYOA")
public var isBYOA:Bool?
/**
* TrustHub Profile Sid
*/
// @ApiMember(Description="TrustHub Profile Sid")
public var trustHubProfileSid:String?
/**
* The ID of the logo file
*/
// @ApiMember(Description="The ID of the logo file")
public var logoId:String?
/**
* The URI of the logo file
*/
// @ApiMember(Description="The URI of the logo file")
public var logoUri:String?
/**
* The billing settings for this account
*/
// @ApiMember(Description="The billing settings for this account")
public var billingSettings:BillingSettings?
required public init(){ super.init() }
private enum CodingKeys : String, CodingKey {
case name
case parentAccountId
case twilioAccountSid
case ancestorIds
case maxPhoneNumbers
case isBYOA
case trustHubProfileSid
case logoId
case logoUri
case billingSettings
}
required public init(from decoder: Decoder) throws {
try super.init(from: decoder)
let container = try decoder.container(keyedBy: CodingKeys.self)
name = try container.decodeIfPresent(String.self, forKey: .name)
parentAccountId = try container.decodeIfPresent(String.self, forKey: .parentAccountId)
twilioAccountSid = try container.decodeIfPresent(String.self, forKey: .twilioAccountSid)
ancestorIds = try container.decodeIfPresent([String].self, forKey: .ancestorIds) ?? []
maxPhoneNumbers = try container.decodeIfPresent(Int.self, forKey: .maxPhoneNumbers)
isBYOA = try container.decodeIfPresent(Bool.self, forKey: .isBYOA)
trustHubProfileSid = try container.decodeIfPresent(String.self, forKey: .trustHubProfileSid)
logoId = try container.decodeIfPresent(String.self, forKey: .logoId)
logoUri = try container.decodeIfPresent(String.self, forKey: .logoUri)
billingSettings = try container.decodeIfPresent(BillingSettings.self, forKey: .billingSettings)
}
public override func encode(to encoder: Encoder) throws {
try super.encode(to: encoder)
var container = encoder.container(keyedBy: CodingKeys.self)
if name != nil { try container.encode(name, forKey: .name) }
if parentAccountId != nil { try container.encode(parentAccountId, forKey: .parentAccountId) }
if twilioAccountSid != nil { try container.encode(twilioAccountSid, forKey: .twilioAccountSid) }
if ancestorIds.count > 0 { try container.encode(ancestorIds, forKey: .ancestorIds) }
if maxPhoneNumbers != nil { try container.encode(maxPhoneNumbers, forKey: .maxPhoneNumbers) }
if isBYOA != nil { try container.encode(isBYOA, forKey: .isBYOA) }
if trustHubProfileSid != nil { try container.encode(trustHubProfileSid, forKey: .trustHubProfileSid) }
if logoId != nil { try container.encode(logoId, forKey: .logoId) }
if logoUri != nil { try container.encode(logoUri, forKey: .logoUri) }
if billingSettings != nil { try container.encode(billingSettings, forKey: .billingSettings) }
}
}
public class BillingSettings : Codable
{
public var base:BillingItem?
public var localNumbers:BillingItem?
public var tollFreeNumbers:BillingItem?
public var inboundVoiceCalls:BillingItem?
public var outboundVoiceCalls:BillingItem?
public var inboundFaxes:BillingItem?
public var outboundFaxes:BillingItem?
public var inboundSmsMessages:BillingItem?
public var outboundSmsMessages:BillingItem?
required public init(){}
}
public class BillingItem : Codable
{
public var baseCost:Double?
public var rawUnitMultiplier:Double?
public var unitCost:Double?
public var allowance:Int?
required public init(){}
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /portal/call-history HTTP/1.1 Host: evovoice.io Accept: application/xml
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <ListResponseOfSessionInfoBWxtuWQa xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Voice.Api"> <HasMorePages>false</HasMorePages> <Items xmlns:d2p1="http://schemas.datacontract.org/2004/07/Voice.Api.Sessions"> <d2p1:SessionInfo> <CreatedBy>String</CreatedBy> <DateCreated>String</DateCreated> <DateLastModified>String</DateLastModified> <Id>String</Id> <LastModifiedBy>String</LastModifiedBy> <d2p1:AccountId>String</d2p1:AccountId> <d2p1:AccountName>String</d2p1:AccountName> <d2p1:AnsweredById>String</d2p1:AnsweredById> <d2p1:AnsweredByName>String</d2p1:AnsweredByName> <d2p1:CallSid>String</d2p1:CallSid> <d2p1:CallState>Disconnected</d2p1:CallState> <d2p1:CallbackNumber>String</d2p1:CallbackNumber> <d2p1:Channel>Voice</d2p1:Channel> <d2p1:ConferenceSid>String</d2p1:ConferenceSid> <d2p1:ConsoleData>String</d2p1:ConsoleData> <d2p1:CustomerBreadcrumb xmlns:d4p1="http://schemas.datacontract.org/2004/07/Voice.Api.Customers"> <d4p1:CustomerBreadcrumb> <d4p1:Id>String</d4p1:Id> <d4p1:Name>String</d4p1:Name> </d4p1:CustomerBreadcrumb> </d2p1:CustomerBreadcrumb> <d2p1:CustomerId>String</d2p1:CustomerId> <d2p1:CustomerName>String</d2p1:CustomerName> <d2p1:DateCompleted>String</d2p1:DateCompleted> <d2p1:Destination>String</d2p1:Destination> <d2p1:DialState>None</d2p1:DialState> <d2p1:Direction>Incoming</d2p1:Direction> <d2p1:DisplayName>String</d2p1:DisplayName> <d2p1:Ended>false</d2p1:Ended> <d2p1:EndpointId>String</d2p1:EndpointId> <d2p1:EndpointName>String</d2p1:EndpointName> <d2p1:FromAddress>String</d2p1:FromAddress> <d2p1:FromName>String</d2p1:FromName> <d2p1:FromPhoneNumber>String</d2p1:FromPhoneNumber> <d2p1:HeldByUserId>String</d2p1:HeldByUserId> <d2p1:HoldQueueName>String</d2p1:HoldQueueName> <d2p1:HoldReason>None</d2p1:HoldReason> <d2p1:Log> <d2p1:SessionLogInfo> <d2p1:Date>String</d2p1:Date> <d2p1:Message>String</d2p1:Message> </d2p1:SessionLogInfo> </d2p1:Log> <d2p1:Members> <d2p1:SessionMemberInfo> <d2p1:ApplicationData xmlns:d6p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d6p1:KeyValueOfstringstring> <d6p1:Key>String</d6p1:Key> <d6p1:Value>String</d6p1:Value> </d6p1:KeyValueOfstringstring> </d2p1:ApplicationData> <d2p1:AvatarUrl>String</d2p1:AvatarUrl> <d2p1:CallSid>String</d2p1:CallSid> <d2p1:CallState>None</d2p1:CallState> <d2p1:DisplayName>String</d2p1:DisplayName> <d2p1:EndpointId>String</d2p1:EndpointId> <d2p1:Identity>String</d2p1:Identity> <d2p1:IsOriginalMember>false</d2p1:IsOriginalMember> <d2p1:Muted>false</d2p1:Muted> <d2p1:Role>None</d2p1:Role> </d2p1:SessionMemberInfo> </d2p1:Members> <d2p1:MostRecentParticipantCallSid>String</d2p1:MostRecentParticipantCallSid> <d2p1:Outcome>String</d2p1:Outcome> <d2p1:QueueMemberId>String</d2p1:QueueMemberId> <d2p1:QueueState>None</d2p1:QueueState> <d2p1:RingQueueId>String</d2p1:RingQueueId> <d2p1:ToAddress>String</d2p1:ToAddress> <d2p1:WasMissed>false</d2p1:WasMissed> </d2p1:SessionInfo> </Items> <TotalCount>0</TotalCount> <TotalPages>0</TotalPages> </ListResponseOfSessionInfoBWxtuWQa>