All Verbs | /user/organizations |
---|
import java.math.*;
import java.util.*;
import java.io.InputStream;
import net.servicestack.client.*;
public class dtos
{
public static class GetUserOrganizations implements IGet
{
}
public static class GetUserOrganizationsResponse
{
public ArrayList<OrganizationMember> members = null;
public ArrayList<OrganizationMemberInvite> memberInvites = null;
public ArrayList<OrganizationSubscription> subscriptions = null;
public ArrayList<OrganizationMember> getMembers() { return members; }
public GetUserOrganizationsResponse setMembers(ArrayList<OrganizationMember> value) { this.members = value; return this; }
public ArrayList<OrganizationMemberInvite> getMemberInvites() { return memberInvites; }
public GetUserOrganizationsResponse setMemberInvites(ArrayList<OrganizationMemberInvite> value) { this.memberInvites = value; return this; }
public ArrayList<OrganizationSubscription> getSubscriptions() { return subscriptions; }
public GetUserOrganizationsResponse setSubscriptions(ArrayList<OrganizationSubscription> value) { this.subscriptions = value; return this; }
}
public static class OrganizationMember
{
public Integer id = null;
public Integer organizationId = null;
public Integer userId = null;
public String userName = null;
public Boolean isOwner = null;
public Boolean isModerator = null;
public Boolean denyAll = null;
public Boolean denyPosts = null;
public Boolean denyComments = null;
public String notes = null;
public Integer getId() { return id; }
public OrganizationMember setId(Integer value) { this.id = value; return this; }
public Integer getOrganizationId() { return organizationId; }
public OrganizationMember setOrganizationId(Integer value) { this.organizationId = value; return this; }
public Integer getUserId() { return userId; }
public OrganizationMember setUserId(Integer value) { this.userId = value; return this; }
public String getUserName() { return userName; }
public OrganizationMember setUserName(String value) { this.userName = value; return this; }
public Boolean getIsOwner() { return isOwner; }
public OrganizationMember setIsOwner(Boolean value) { this.isOwner = value; return this; }
public Boolean getIsModerator() { return isModerator; }
public OrganizationMember setIsModerator(Boolean value) { this.isModerator = value; return this; }
public Boolean isDenyAll() { return denyAll; }
public OrganizationMember setDenyAll(Boolean value) { this.denyAll = value; return this; }
public Boolean isDenyPosts() { return denyPosts; }
public OrganizationMember setDenyPosts(Boolean value) { this.denyPosts = value; return this; }
public Boolean isDenyComments() { return denyComments; }
public OrganizationMember setDenyComments(Boolean value) { this.denyComments = value; return this; }
public String getNotes() { return notes; }
public OrganizationMember setNotes(String value) { this.notes = value; return this; }
}
public static class OrganizationMemberInvite
{
public Integer id = null;
public Integer organizationId = null;
public Integer userId = null;
public String userName = null;
public Date dismissed = null;
public Integer getId() { return id; }
public OrganizationMemberInvite setId(Integer value) { this.id = value; return this; }
public Integer getOrganizationId() { return organizationId; }
public OrganizationMemberInvite setOrganizationId(Integer value) { this.organizationId = value; return this; }
public Integer getUserId() { return userId; }
public OrganizationMemberInvite setUserId(Integer value) { this.userId = value; return this; }
public String getUserName() { return userName; }
public OrganizationMemberInvite setUserName(String value) { this.userName = value; return this; }
public Date getDismissed() { return dismissed; }
public OrganizationMemberInvite setDismissed(Date value) { this.dismissed = value; return this; }
}
public static class OrganizationSubscription
{
public Long id = null;
public Integer organizationId = null;
public Integer userId = null;
public String userName = null;
public ArrayList<String> postTypes = null;
public Integer frequencyDays = null;
public Long lastSyncedId = null;
public Date lastSynced = null;
public Date created = null;
public Long getId() { return id; }
public OrganizationSubscription setId(Long value) { this.id = value; return this; }
public Integer getOrganizationId() { return organizationId; }
public OrganizationSubscription setOrganizationId(Integer value) { this.organizationId = value; return this; }
public Integer getUserId() { return userId; }
public OrganizationSubscription setUserId(Integer value) { this.userId = value; return this; }
public String getUserName() { return userName; }
public OrganizationSubscription setUserName(String value) { this.userName = value; return this; }
public ArrayList<String> getPostTypes() { return postTypes; }
public OrganizationSubscription setPostTypes(ArrayList<String> value) { this.postTypes = value; return this; }
public Integer getFrequencyDays() { return frequencyDays; }
public OrganizationSubscription setFrequencyDays(Integer value) { this.frequencyDays = value; return this; }
public Long getLastSyncedId() { return lastSyncedId; }
public OrganizationSubscription setLastSyncedId(Long value) { this.lastSyncedId = value; return this; }
public Date getLastSynced() { return lastSynced; }
public OrganizationSubscription setLastSynced(Date value) { this.lastSynced = value; return this; }
public Date getCreated() { return created; }
public OrganizationSubscription setCreated(Date value) { this.created = value; return this; }
}
}
Java GetUserOrganizations DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /user/organizations HTTP/1.1
Host: techstacks.io
Accept: application/json
Content-Type: application/json
Content-Length: length
{}
HTTP/1.1 200 OK Content-Type: application/json Content-Length: length {"members":[{"id":0,"organizationId":0,"userId":0,"userName":"String","isOwner":false,"isModerator":false,"denyAll":false,"denyPosts":false,"denyComments":false,"notes":"String"}],"memberInvites":[{"id":0,"organizationId":0,"userId":0,"userName":"String","dismissed":"0001-01-01T00:00:00.0000000"}],"subscriptions":[{"id":0,"organizationId":0,"userId":0,"userName":"String","postTypes":["String"],"frequencyDays":0,"lastSyncedId":0,"lastSynced":"0001-01-01T00:00:00.0000000","created":"0001-01-01T00:00:00.0000000"}]}