/* Options: Date: 2024-04-27 18:44:23 Version: 8.13 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://techstacks.io //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetOrganizationAdmin.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/orgs/{Id}/admin", Verbs="GET") public static class GetOrganizationAdmin implements IReturn, IGet { public Integer id = null; public Integer getId() { return id; } public GetOrganizationAdmin setId(Integer value) { this.id = value; return this; } private static Object responseType = GetOrganizationAdminResponse.class; public Object getResponseType() { return responseType; } } public static class GetOrganizationAdminResponse { public ArrayList labels = null; public ArrayList members = null; public ArrayList memberInvites = null; public ArrayList reportedPosts = null; public ArrayList reportedPostComments = null; public ResponseStatus responseStatus = null; public ArrayList getLabels() { return labels; } public GetOrganizationAdminResponse setLabels(ArrayList value) { this.labels = value; return this; } public ArrayList getMembers() { return members; } public GetOrganizationAdminResponse setMembers(ArrayList value) { this.members = value; return this; } public ArrayList getMemberInvites() { return memberInvites; } public GetOrganizationAdminResponse setMemberInvites(ArrayList value) { this.memberInvites = value; return this; } public ArrayList getReportedPosts() { return reportedPosts; } public GetOrganizationAdminResponse setReportedPosts(ArrayList value) { this.reportedPosts = value; return this; } public ArrayList getReportedPostComments() { return reportedPostComments; } public GetOrganizationAdminResponse setReportedPostComments(ArrayList value) { this.reportedPostComments = value; return this; } public ResponseStatus getResponseStatus() { return responseStatus; } public GetOrganizationAdminResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } public static enum FlagType { Violation, Spam, Abusive, Confidential, OffTopic, Other; } 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 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; } } }