namespace BlazorDiffusion.ServiceModel
open System
open System.IO
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations
[<AllowNullLiteral>]
type ArtistInfo() =
member val Id:Int32 = new Int32() with get,set
member val Name:String = null with get,set
member val Type:String = null with get,set
[<AllowNullLiteral>]
type ModifierInfo() =
member val Id:Int32 = new Int32() with get,set
member val Name:String = null with get,set
member val Category:String = null with get,set
[<AllowNullLiteral>]
type SearchDataResponse() =
member val Artists:ResizeArray<ArtistInfo> = null with get,set
member val Modifiers:ResizeArray<ModifierInfo> = null with get,set
[<AllowNullLiteral>]
type SearchData() =
class end
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /jsv/reply/SearchData HTTP/1.1
Host: blazordiffusion.com
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
}
HTTP/1.1 200 OK Content-Type: text/jsv Content-Length: length { artists: [ { id: 0, name: String, type: String } ], modifiers: [ { id: 0, name: String, category: String } ] }