sfgboxapi

<back to all web services

FoodGardensAutoQueryAdd


export class FoodGardens
{
    // @DataMember(Order=1)
    // @Required()
    public id: number;

    // @DataMember(Order=2)
    // @Required()
    // @References("typeof(sfgboxapi.ServiceModel.Types.Tenants)")
    public tenantsId: number;

    // @DataMember(Order=3)
    // @Required()
    public name: string;

    // @DataMember(Order=4)
    public description: string;

    public constructor(init?: Partial<FoodGardens>) { (Object as any).assign(this, init); }
}

export class FoodGardensAutoQueryAdd implements ICreateDb<FoodGardens>
{
    // @DataMember(Order=2)
    public tenantsId: number;

    // @DataMember(Order=3)
    public name: string;

    // @DataMember(Order=4)
    public description: string;

    // @DataMember(Order=6)
    public responseStatus: ResponseStatus;

    public constructor(init?: Partial<FoodGardensAutoQueryAdd>) { (Object as any).assign(this, init); }
}

TypeScript FoodGardensAutoQueryAdd DTOs

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

HTTP + CSV

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

POST /csv/reply/FoodGardensAutoQueryAdd HTTP/1.1 
Host: api-stage.smartfarmertech.com 
Accept: text/csv
Content-Type: text/csv
Content-Length: length

{"tenantsId":0,"name":"String","description":"String","responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length

{"id":0,"tenantsId":0,"name":"String","description":"String"}