sfgboxapi

<back to all web services

UsersRolesAutoQueryAdd

import java.math.*;
import java.util.*;
import net.servicestack.client.*;

public class dtos
{

    public static class UsersRolesAutoQueryAdd implements ICreateDb<UsersRoles>
    {
        @DataMember(Order=2)
        public Long appUserId = null;

        @DataMember(Order=3)
        public Long rolesId = null;

        @DataMember(Order=5)
        public ResponseStatus responseStatus = null;
        
        public Long getAppUserId() { return appUserId; }
        public UsersRolesAutoQueryAdd setAppUserId(Long value) { this.appUserId = value; return this; }
        public Long getRolesId() { return rolesId; }
        public UsersRolesAutoQueryAdd setRolesId(Long value) { this.rolesId = value; return this; }
        public ResponseStatus getResponseStatus() { return responseStatus; }
        public UsersRolesAutoQueryAdd setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; }
    }

    public static class UsersRoles
    {
        @DataMember(Order=1)
        @Required()
        public Long id = null;

        @DataMember(Order=2)
        @Required()
        @References(AppUser.class)
        public Long appUserId = null;

        @DataMember(Order=3)
        @Required()
        @References(Roles.class)
        public Long rolesId = null;
        
        public Long getId() { return id; }
        public UsersRoles setId(Long value) { this.id = value; return this; }
        public Long getAppUserId() { return appUserId; }
        public UsersRoles setAppUserId(Long value) { this.appUserId = value; return this; }
        public Long getRolesId() { return rolesId; }
        public UsersRoles setRolesId(Long value) { this.rolesId = value; return this; }
    }

}

Java UsersRolesAutoQueryAdd DTOs

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

HTTP + OTHER

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

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

{"appUserId":0,"rolesId":0,"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/jsonl
Content-Length: length

{"id":0,"appUserId":0,"rolesId":0}