(* Options: Date: 2025-05-05 01:50:04 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: ListCrmCustomers.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Voice.Api.Integrations open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type CrmCustomerInfo() = member val Id:String = null with get,set member val DisplayName:String = null with get,set [] type ListCrmCustomersResponse() = member val Customers:ResizeArray = null with get,set [] [] type ListCrmCustomers() = interface IReturn member val IntegrationId:String = null with get,set member val Query:String = null with get,set