| GET | /api/v1/farms/{Id} |
|---|
namespace Pecuario.Backend.Application.DTOs
open System
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations
[<AllowNullLiteral>]
type Status() =
member val Message:String = null with get,set
member val StatusCode:Int32 = new Int32() with get,set
[<AllowNullLiteral>]
type BaseResponse() =
member val Status:Status = null with get,set
[<AllowNullLiteral>]
type Farm() =
member val Id:Int32 = new Int32() with get,set
[<References(typeof<AppUser>)>]
member val UserId:Int32 = new Int32() with get,set
[<Required>]
[<StringLength(100)>]
member val Name:String = null with get,set
[<References(typeof<Region>)>]
member val RegionId:Nullable<Int32> = new Nullable<Int32>() with get,set
[<References(typeof<MeasurementUnit>)>]
member val MeasurementUnitId:Nullable<Int32> = new Nullable<Int32>() with get,set
member val Area:Nullable<Decimal> = new Nullable<Decimal>() with get,set
[<AllowNullLiteral>]
type GetFarmResponse() =
inherit BaseResponse()
member val Farm:Farm = null with get,set
[<AllowNullLiteral>]
type GetFarm() =
interface IGet
member val Id:Int32 = new Int32() with get,set
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.
GET /api/v1/farms/{Id} HTTP/1.1
Host: pecuario-backend.develsystems.com
Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
farm:
{
id: 0,
userId: 0,
name: String,
regionId: 0,
measurementUnitId: 0,
area: 0
}
}