GET | /orgs/{Id}/admin |
---|
import java.math.*;
import java.util.*;
import java.io.InputStream;
import net.servicestack.client.*;
public class dtos
{
public static class GetOrganizationAdmin implements IGet
{
public Integer id = null;
public Integer getId() { return id; }
public GetOrganizationAdmin setId(Integer value) { this.id = value; return this; }
}
public static class GetOrganizationAdminResponse
{
public ArrayList<OrganizationLabel> labels = null;
public ArrayList<OrganizationMember> members = null;
public ArrayList<OrganizationMemberInvite> memberInvites = null;
public ArrayList<PostReportInfo> reportedPosts = null;
public ArrayList<PostCommentReportInfo> reportedPostComments = null;
public ResponseStatus responseStatus = null;
public ArrayList<OrganizationLabel> getLabels() { return labels; }
public GetOrganizationAdminResponse setLabels(ArrayList<OrganizationLabel> value) { this.labels = value; return this; }
public ArrayList<OrganizationMember> getMembers() { return members; }
public GetOrganizationAdminResponse setMembers(ArrayList<OrganizationMember> value) { this.members = value; return this; }
public ArrayList<OrganizationMemberInvite> getMemberInvites() { return memberInvites; }
public GetOrganizationAdminResponse setMemberInvites(ArrayList<OrganizationMemberInvite> value) { this.memberInvites = value; return this; }
public ArrayList<PostReportInfo> getReportedPosts() { return reportedPosts; }
public GetOrganizationAdminResponse setReportedPosts(ArrayList<PostReportInfo> value) { this.reportedPosts = value; return this; }
public ArrayList<PostCommentReportInfo> getReportedPostComments() { return reportedPostComments; }
public GetOrganizationAdminResponse setReportedPostComments(ArrayList<PostCommentReportInfo> value) { this.reportedPostComments = value; return this; }
public ResponseStatus getResponseStatus() { return responseStatus; }
public GetOrganizationAdminResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; }
}
public static class OrganizationLabel
{
public String slug = null;
public Integer organizationId = null;
public String description = null;
public String color = null;
public String getSlug() { return slug; }
public OrganizationLabel setSlug(String value) { this.slug = value; return this; }
public Integer getOrganizationId() { return organizationId; }
public OrganizationLabel setOrganizationId(Integer value) { this.organizationId = value; return this; }
public String getDescription() { return description; }
public OrganizationLabel setDescription(String value) { this.description = value; return this; }
public String getColor() { return color; }
public OrganizationLabel setColor(String value) { this.color = 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 PostReportInfo
{
public Long id = null;
public Integer organizationId = null;
public Long postId = null;
public Integer userId = null;
public String userName = null;
public FlagType flagType = null;
public String reportNotes = null;
public Date created = null;
public Date acknowledged = null;
public String acknowledgedBy = null;
public Date dismissed = null;
public String dismissedBy = null;
public String title = null;
public Integer reportCount = null;
public String createdBy = null;
public Long getId() { return id; }
public PostReportInfo setId(Long value) { this.id = value; return this; }
public Integer getOrganizationId() { return organizationId; }
public PostReportInfo setOrganizationId(Integer value) { this.organizationId = value; return this; }
public Long getPostId() { return postId; }
public PostReportInfo setPostId(Long value) { this.postId = value; return this; }
public Integer getUserId() { return userId; }
public PostReportInfo setUserId(Integer value) { this.userId = value; return this; }
public String getUserName() { return userName; }
public PostReportInfo setUserName(String value) { this.userName = value; return this; }
public FlagType getFlagType() { return flagType; }
public PostReportInfo setFlagType(FlagType value) { this.flagType = value; return this; }
public String getReportNotes() { return reportNotes; }
public PostReportInfo setReportNotes(String value) { this.reportNotes = value; return this; }
public Date getCreated() { return created; }
public PostReportInfo setCreated(Date value) { this.created = value; return this; }
public Date getAcknowledged() { return acknowledged; }
public PostReportInfo setAcknowledged(Date value) { this.acknowledged = value; return this; }
public String getAcknowledgedBy() { return acknowledgedBy; }
public PostReportInfo setAcknowledgedBy(String value) { this.acknowledgedBy = value; return this; }
public Date getDismissed() { return dismissed; }
public PostReportInfo setDismissed(Date value) { this.dismissed = value; return this; }
public String getDismissedBy() { return dismissedBy; }
public PostReportInfo setDismissedBy(String value) { this.dismissedBy = value; return this; }
public String getTitle() { return title; }
public PostReportInfo setTitle(String value) { this.title = value; return this; }
public Integer getReportCount() { return reportCount; }
public PostReportInfo setReportCount(Integer value) { this.reportCount = value; return this; }
public String getCreatedBy() { return createdBy; }
public PostReportInfo setCreatedBy(String value) { this.createdBy = value; return this; }
}
public static enum FlagType
{
Violation,
Spam,
Abusive,
Confidential,
OffTopic,
Other;
}
public static class PostCommentReportInfo
{
public Long id = null;
public Integer organizationId = null;
public Long postId = null;
public Long postCommentId = null;
public Integer userId = null;
public String userName = null;
public FlagType flagType = null;
public String reportNotes = null;
public Date created = null;
public Date acknowledged = null;
public String acknowledgedBy = null;
public Date dismissed = null;
public String dismissedBy = null;
public String contentHtml = null;
public Integer reportCount = null;
public String createdBy = null;
public Long getId() { return id; }
public PostCommentReportInfo setId(Long value) { this.id = value; return this; }
public Integer getOrganizationId() { return organizationId; }
public PostCommentReportInfo setOrganizationId(Integer value) { this.organizationId = value; return this; }
public Long getPostId() { return postId; }
public PostCommentReportInfo setPostId(Long value) { this.postId = value; return this; }
public Long getPostCommentId() { return postCommentId; }
public PostCommentReportInfo setPostCommentId(Long value) { this.postCommentId = value; return this; }
public Integer getUserId() { return userId; }
public PostCommentReportInfo setUserId(Integer value) { this.userId = value; return this; }
public String getUserName() { return userName; }
public PostCommentReportInfo setUserName(String value) { this.userName = value; return this; }
public FlagType getFlagType() { return flagType; }
public PostCommentReportInfo setFlagType(FlagType value) { this.flagType = value; return this; }
public String getReportNotes() { return reportNotes; }
public PostCommentReportInfo setReportNotes(String value) { this.reportNotes = value; return this; }
public Date getCreated() { return created; }
public PostCommentReportInfo setCreated(Date value) { this.created = value; return this; }
public Date getAcknowledged() { return acknowledged; }
public PostCommentReportInfo setAcknowledged(Date value) { this.acknowledged = value; return this; }
public String getAcknowledgedBy() { return acknowledgedBy; }
public PostCommentReportInfo setAcknowledgedBy(String value) { this.acknowledgedBy = value; return this; }
public Date getDismissed() { return dismissed; }
public PostCommentReportInfo setDismissed(Date value) { this.dismissed = value; return this; }
public String getDismissedBy() { return dismissedBy; }
public PostCommentReportInfo setDismissedBy(String value) { this.dismissedBy = value; return this; }
public String getContentHtml() { return contentHtml; }
public PostCommentReportInfo setContentHtml(String value) { this.contentHtml = value; return this; }
public Integer getReportCount() { return reportCount; }
public PostCommentReportInfo setReportCount(Integer value) { this.reportCount = value; return this; }
public String getCreatedBy() { return createdBy; }
public PostCommentReportInfo setCreatedBy(String value) { this.createdBy = value; return this; }
}
}
Java GetOrganizationAdmin DTOs
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 /orgs/{Id}/admin HTTP/1.1 Host: techstacks.io Accept: text/jsv
HTTP/1.1 200 OK Content-Type: text/jsv Content-Length: length { labels: [ { slug: String, organizationId: 0, description: String, color: String } ], 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-01 } ], reportedPosts: [ { id: 0, organizationId: 0, postId: 0, userId: 0, userName: String, flagType: Violation, reportNotes: String, created: 0001-01-01, acknowledged: 0001-01-01, acknowledgedBy: String, dismissed: 0001-01-01, dismissedBy: String, title: String, reportCount: 0, createdBy: String } ], reportedPostComments: [ { id: 0, organizationId: 0, postId: 0, postCommentId: 0, userId: 0, userName: String, flagType: Violation, reportNotes: String, created: 0001-01-01, acknowledged: 0001-01-01, acknowledgedBy: String, dismissed: 0001-01-01, dismissedBy: String, contentHtml: String, reportCount: 0, createdBy: String } ], responseStatus: { errorCode: String, message: String, stackTrace: String, errors: [ { errorCode: String, fieldName: String, message: String, meta: { String: String } } ], meta: { String: String } } }