Pecuario.Backend

<back to all web services

GetAnimalCategories

The following routes are available for this service:
GET/api/v1/utils/animal-categories
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 AnimalCategory() = 
        member val Id:Int32 = new Int32() with get,set
        [<Required>]
        [<StringLength(50)>]
        member val Name:String = null with get,set

        member val Alias:String = null with get,set
        member val Order:Int32 = new Int32() with get,set
        member val Enabled:Boolean = new Boolean() with get,set

    [<AllowNullLiteral>]
    type GetAnimalCategoriesResponse() = 
        inherit BaseResponse()
        member val AnimalCategories:ResizeArray<AnimalCategory> = new ResizeArray<AnimalCategory>() with get,set

    [<AllowNullLiteral>]
    type GetAnimalCategories() = 
        interface IGet

F# GetAnimalCategories DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

GET /api/v1/utils/animal-categories HTTP/1.1 
Host: pecuario-backend.develsystems.com 
Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	animalCategories: 
	[
		{
			id: 0,
			name: String,
			alias: String,
			order: 0,
			enabled: False
		}
	]
}