/* Options: Date: 2025-05-04 23:45:26 SwiftVersion: 6.0 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: ListUsageRecords.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack /** * Gets all usage records for specified date range */ // @Route("/billing/usage", "GET") // @Api(Description="Gets all usage records for specified date range") public class ListUsageRecords : IReturn, IGet, Codable { public typealias Return = [UsageRecordInfo] /** * The account ID you are listing for */ // @ApiMember(Description="The account ID you are listing for") public var accountId:String? /** * The start date to retrieve usage records for (YYYY-MM-DD) */ // @ApiMember(Description="The start date to retrieve usage records for (YYYY-MM-DD)") public var startDate:String? /** * The end date to retrieve usage records for (YYYY-MM-DD) */ // @ApiMember(Description="The end date to retrieve usage records for (YYYY-MM-DD)") public var endDate:String? required public init(){} }