/* Options:
Date: 2025-05-05 00:47:52
Version: 8.71
Tip: To override a DTO option, remove "//" prefix before updating
BaseUrl: https://team.evovoice.io
//GlobalNamespace:
//MakePartial: True
//MakeVirtual: True
//MakeInternal: False
//MakeDataContractsExtensible: False
//AddNullableAnnotations: False
//AddReturnMarker: True
//AddDescriptionAsComments: True
//AddDataContractAttributes: False
//AddIndexesToDataMembers: False
//AddGeneratedCodeAttributes: False
//AddResponseStatus: False
//AddImplicitVersion:
//InitializeCollections: False
//ExportValueTypes: False
IncludeTypes: ListReports.*
//ExcludeTypes:
//AddNamespaces:
//AddDefaultXmlNamespace: http://schemas.servicestack.net/types
*/
using System;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using Voice.Api.Reports;
namespace Voice.Api.Reports
{
///
///Returns all of the active/completed reports for the current user
///
[Route("/reports", "GET")]
[Api(Description="Returns all of the active/completed reports for the current user")]
public partial class ListReports
: IReturn
{
public virtual string AccountId { get; set; }
}
public partial class ListReportsResponse
{
public virtual List Reports { get; set; }
}
public partial class ReportInfo
{
public virtual string Id { get; set; }
public virtual string Name { get; set; }
public virtual ReportStatuses Status { get; set; }
public virtual string StatusMessage { get; set; }
public virtual string DateCreated { get; set; }
public virtual string DateUpdated { get; set; }
public virtual string DownloadLink { get; set; }
public virtual string JobId { get; set; }
public virtual string EmailAddressToNotify { get; set; }
public virtual string Server { get; set; }
}
}