/* Options: Date: 2026-04-04 01:02:34 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: UpdateContactRoleGroup.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { /** * Update contact role group */ @Route(Path="/contactrolegroups", Verbs="PUT") @Api(Description="Update contact role group") public static class UpdateContactRoleGroup implements IReturn { /** * Guid of the Contact Role Group to be updated. */ @ApiMember(DataType="Guid", Description="Guid of the Contact Role Group to be updated.", IsRequired=true, Name="RoleGroupId", ParameterType="query") public UUID RoleGroupId = null; /** * Contact role group name to be updated */ @ApiMember(DataType="string", Description="Contact role group name to be updated", IsRequired=true, Name="Name", ParameterType="query") public String Name = null; public ArrayList Roles = null; public UUID getRoleGroupId() { return RoleGroupId; } public UpdateContactRoleGroup setRoleGroupId(UUID value) { this.RoleGroupId = value; return this; } public String getName() { return Name; } public UpdateContactRoleGroup setName(String value) { this.Name = value; return this; } public ArrayList getRoles() { return Roles; } public UpdateContactRoleGroup setRoles(ArrayList value) { this.Roles = value; return this; } private static Object responseType = ResponseStatus.class; public Object getResponseType() { return responseType; } } @DataContract public static class ResponseStatus { @DataMember(Order=1) public String ErrorCode = null; @DataMember(Order=2) public String Message = null; @DataMember(Order=3) public String StackTrace = null; @DataMember(Order=4) public ArrayList Errors = null; @DataMember(Order=5) public HashMap Meta = null; public String getErrorCode() { return ErrorCode; } public ResponseStatus setErrorCode(String value) { this.ErrorCode = value; return this; } public String getMessage() { return Message; } public ResponseStatus setMessage(String value) { this.Message = value; return this; } public String getStackTrace() { return StackTrace; } public ResponseStatus setStackTrace(String value) { this.StackTrace = value; return this; } public ArrayList getErrors() { return Errors; } public ResponseStatus setErrors(ArrayList value) { this.Errors = value; return this; } public HashMap getMeta() { return Meta; } public ResponseStatus setMeta(HashMap value) { this.Meta = value; return this; } } public static class ListItemModel { public UUID ListItemId = null; public String Name = null; public String Description = null; public String ShortName = null; public Boolean IsDefault = null; public Integer Order = null; public UUID ListItemTrafficLightId = null; public UUID PrimaryListItemImageId = null; public String PrimaryListItemImageUrl = null; public String PrimaryImageThumbnailUrl = null; public UUID OwnerContactId = null; public String RecordStatus = null; public UUID getListItemId() { return ListItemId; } public ListItemModel setListItemId(UUID value) { this.ListItemId = value; return this; } public String getName() { return Name; } public ListItemModel setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public ListItemModel setDescription(String value) { this.Description = value; return this; } public String getShortName() { return ShortName; } public ListItemModel setShortName(String value) { this.ShortName = value; return this; } public Boolean getIsDefault() { return IsDefault; } public ListItemModel setIsDefault(Boolean value) { this.IsDefault = value; return this; } public Integer getOrder() { return Order; } public ListItemModel setOrder(Integer value) { this.Order = value; return this; } public UUID getListItemTrafficLightId() { return ListItemTrafficLightId; } public ListItemModel setListItemTrafficLightId(UUID value) { this.ListItemTrafficLightId = value; return this; } public UUID getPrimaryListItemImageId() { return PrimaryListItemImageId; } public ListItemModel setPrimaryListItemImageId(UUID value) { this.PrimaryListItemImageId = value; return this; } public String getPrimaryListItemImageUrl() { return PrimaryListItemImageUrl; } public ListItemModel setPrimaryListItemImageUrl(String value) { this.PrimaryListItemImageUrl = value; return this; } public String getPrimaryImageThumbnailUrl() { return PrimaryImageThumbnailUrl; } public ListItemModel setPrimaryImageThumbnailUrl(String value) { this.PrimaryImageThumbnailUrl = value; return this; } public UUID getOwnerContactId() { return OwnerContactId; } public ListItemModel setOwnerContactId(UUID value) { this.OwnerContactId = value; return this; } public String getRecordStatus() { return RecordStatus; } public ListItemModel setRecordStatus(String value) { this.RecordStatus = value; return this; } } }