(* Options:
Date: 2025-05-27 18:27:51
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: GetFileInfo.*
//ExcludeTypes: 
//InitializeCollections: False
//AddNamespaces: 
*)

namespace Voice.Api.App

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

    [<AllowNullLiteral>]
    type GetFileInfoResponse() = 
        member val Uri:String = null with get,set

    ///<summary>
    ///Get the specified file's URI
    ///</summary>
    [<Route("/app/file/{fileId}", "GET")>]
    [<Api(Description="Get the specified file's URI")>]
    [<AllowNullLiteral>]
    type GetFileInfo() = 
        interface IReturn<GetFileInfoResponse>
        interface IPost
        ///<summary>
        ///The ID of the file
        ///</summary>
        [<ApiMember(Description="The ID of the file")>]
        member val FileId:String = null with get,set