/* Options: Date: 2025-08-05 01:54:18 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: CommentsBatchUpdateRequest.* //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="/comments-api/comments/list", Verbs="PUT") public static class CommentsBatchUpdateRequest implements IReturn> { public ArrayList Key = null; public String Status = null; public ArrayList getKey() { return Key; } public CommentsBatchUpdateRequest setKey(ArrayList value) { this.Key = value; return this; } public String getStatus() { return Status; } public CommentsBatchUpdateRequest setStatus(String value) { this.Status = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } public static class CollectionResponse { public Integer TotalCount = null; public ArrayList Items = null; public Integer getTotalCount() { return TotalCount; } public CollectionResponse setTotalCount(Integer value) { this.TotalCount = value; return this; } public ArrayList getItems() { return Items; } public CollectionResponse setItems(ArrayList value) { this.Items = value; return this; } } public static class CommentResponse { public String Key = null; public String Name = null; public String Message = null; public Date DateCreated = null; public String ProfilePictureUrl = null; public String ProfilePictureThumbnailUrl = null; public String Status = null; public String Email = null; public String ThreadKey = null; public String AuthorIpAddress = null; public String CustomData = null; public BigDecimal Rating = null; public String getKey() { return Key; } public CommentResponse setKey(String value) { this.Key = value; return this; } public String getName() { return Name; } public CommentResponse setName(String value) { this.Name = value; return this; } public String getMessage() { return Message; } public CommentResponse setMessage(String value) { this.Message = value; return this; } public Date getDateCreated() { return DateCreated; } public CommentResponse setDateCreated(Date value) { this.DateCreated = value; return this; } public String getProfilePictureUrl() { return ProfilePictureUrl; } public CommentResponse setProfilePictureUrl(String value) { this.ProfilePictureUrl = value; return this; } public String getProfilePictureThumbnailUrl() { return ProfilePictureThumbnailUrl; } public CommentResponse setProfilePictureThumbnailUrl(String value) { this.ProfilePictureThumbnailUrl = value; return this; } public String getStatus() { return Status; } public CommentResponse setStatus(String value) { this.Status = value; return this; } public String getEmail() { return Email; } public CommentResponse setEmail(String value) { this.Email = value; return this; } public String getThreadKey() { return ThreadKey; } public CommentResponse setThreadKey(String value) { this.ThreadKey = value; return this; } public String getAuthorIpAddress() { return AuthorIpAddress; } public CommentResponse setAuthorIpAddress(String value) { this.AuthorIpAddress = value; return this; } public String getCustomData() { return CustomData; } public CommentResponse setCustomData(String value) { this.CustomData = value; return this; } public BigDecimal getRating() { return Rating; } public CommentResponse setRating(BigDecimal value) { this.Rating = value; return this; } } }