(* Options: Date: 2026-06-22 21:44:50 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: BillingRunStatusRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace CRM.AgencyPlatform.API.Internal open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Net [] type BillingRun() = member val BillingRunID:Int32 = new Int32() with get,set member val TenantId:Nullable = new Nullable() with get,set member val BranchId:Nullable = new Nullable() with get,set member val BranchName:String = null with get,set member val RunType:String = null with get,set member val PeriodKey:String = null with get,set member val Status:String = null with get,set member val InvoicesCreated:Int32 = new Int32() with get,set member val CreditsApplied:Int32 = new Int32() with get,set member val Error:String = null with get,set member val CreatedBy:String = null with get,set member val StartedAt:Nullable = new Nullable() with get,set member val CompletedAt:Nullable = new Nullable() with get,set [] [] type ResponseStatus() = [] member val ErrorCode:String = null with get,set [] member val Message:String = null with get,set [] member val StackTrace:String = null with get,set [] member val Errors:ResizeArray = new ResizeArray() with get,set [] member val Meta:Dictionary = new Dictionary() with get,set [] type BillingRunStatusResponse() = member val ResponseStatus:ResponseStatus = null with get,set member val BillingRun:BillingRun = null with get,set [] [] type BillingRunStatusRequest() = interface IReturn member val BillingRunID:Int32 = new Int32() with get,set