namespace MyApp.ServiceModel
open System
open System.IO
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations
type FileAccessType =
| Public = 0
| Team = 1
| Private = 2
[<AllowNullLiteral>]
type FileSystemFile() =
member val Id:Int32 = new Int32() with get,set
member val FileName:String = null with get,set
member val FilePath:String = null with get,set
member val ContentType:String = null with get,set
member val ContentLength:Int64 = new Int64() with get,set
[<References(typeof<FileSystemItem>)>]
member val FileSystemItemId:Int32 = new Int32() with get,set
[<AllowNullLiteral>]
type FileSystemItem() =
member val Id:Int32 = new Int32() with get,set
member val FileAccessType:Nullable<FileAccessType> = new Nullable<FileAccessType>() with get,set
member val File:FileSystemFile = null with get,set
member val AppUserId:String = null with get,set
[<AllowNullLiteral>]
type QueryFileSystemItems() =
inherit QueryDb<FileSystemItem>()
member val AppUserId:Nullable<Int32> = new Nullable<Int32>() with get,set
member val FileAccessType:Nullable<FileAccessType> = new Nullable<FileAccessType>() with get,set
[<DataContract>]
[<AllowNullLiteral>]
type QueryBase() =
[<DataMember(Order=1)>]
member val Skip:Nullable<Int32> = new Nullable<Int32>() with get,set
[<DataMember(Order=2)>]
member val Take:Nullable<Int32> = new Nullable<Int32>() with get,set
[<DataMember(Order=3)>]
member val OrderBy:String = null with get,set
[<DataMember(Order=4)>]
member val OrderByDesc:String = null with get,set
[<DataMember(Order=5)>]
member val Include:String = null with get,set
[<DataMember(Order=6)>]
member val Fields:String = null with get,set
[<DataMember(Order=7)>]
member val Meta:Dictionary<String, String> = null with get,set
[<AllowNullLiteral>]
type QueryDb<T>() =
inherit QueryBase()
[<AllowNullLiteral>]
type Todo() =
member val Id:Int64 = new Int64() with get,set
member val Text:String = null with get,set
member val IsFinished:Boolean = new Boolean() with get,set
[<DataContract>]
[<AllowNullLiteral>]
type QueryResponse<T>() =
[<DataMember(Order=1)>]
member val Offset:Int32 = new Int32() with get,set
[<DataMember(Order=2)>]
member val Total:Int32 = new Int32() with get,set
[<DataMember(Order=3)>]
member val Results:ResizeArray<Todo> = null with get,set
[<DataMember(Order=4)>]
member val Meta:Dictionary<String, String> = null with get,set
[<DataMember(Order=5)>]
member val ResponseStatus:ResponseStatus = null with get,set
To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /json/reply/QueryFileSystemItems HTTP/1.1
Host: blazor-gallery.servicestack.net
Accept: application/json
Content-Type: application/json
Content-Length: length
{"appUserId":0,"fileAccessType":"Public","skip":0,"take":0,"orderBy":"String","orderByDesc":"String","include":"String","fields":"String","meta":{"String":"String"}}
HTTP/1.1 200 OK Content-Type: application/json Content-Length: length {"offset":0,"total":0,"results":[{"id":0,"fileAccessType":"Public","file":{"id":0,"fileName":"String","filePath":"String","contentType":"String","contentLength":0,"fileSystemItemId":0},"appUserId":"String"}],"meta":{"String":"String"},"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}