(* Options:
Date: 2025-07-18 08:15:02
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: GetFileFieldValues.*
//ExcludeTypes: 
//InitializeCollections: False
//AddNamespaces: 
*)

namespace Voice.Api.Flows.Data

open System
open System.IO
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations

    [<AllowNullLiteral>]
    type FieldValue() = 
        member val DisplayName:String = null with get,set
        member val Value:String = null with get,set

    [<AllowNullLiteral>]
    type GetValuesResponse() = 
        member val FieldValues:ResizeArray<FieldValue> = null with get,set

    [<Route("/values/file")>]
    [<AllowNullLiteral>]
    type GetFileFieldValues() = 
        interface IReturn<GetValuesResponse>
        member val AccountId:String = null with get,set