4040 * AuditTaskActionVM
4141 */
4242@ JsonPropertyOrder ({
43- AuditTaskActionVM .JSON_PROPERTY_MESSAGE_ID
43+ AuditTaskActionVM .JSON_PROPERTY_MESSAGE_ID ,
44+ AuditTaskActionVM .JSON_PROPERTY_FILE_NAME
4445})
4546@ javax .annotation .Generated (value = "org.openapitools.codegen.languages.JavaClientCodegen" )
4647@ JsonIgnoreProperties (
@@ -58,6 +59,9 @@ public class AuditTaskActionVM extends AuditActionVM {
5859 public static final String JSON_PROPERTY_MESSAGE_ID = "messageId" ;
5960 private JsonNullable <String > messageId = JsonNullable .<String >undefined ();
6061
62+ public static final String JSON_PROPERTY_FILE_NAME = "fileName" ;
63+ private JsonNullable <String > fileName = JsonNullable .<String >undefined ();
64+
6165 public AuditTaskActionVM () {
6266
6367 }
@@ -96,6 +100,40 @@ public void setMessageId(String messageId) {
96100 }
97101
98102
103+ public AuditTaskActionVM fileName (String fileName ) {
104+ this .fileName = JsonNullable .<String >of (fileName );
105+
106+ return this ;
107+ }
108+
109+ /**
110+ * Get fileName
111+ * @return fileName
112+ **/
113+ @ javax .annotation .Nullable
114+ @ JsonIgnore
115+
116+ public String getFileName () {
117+ return fileName .orElse (null );
118+ }
119+
120+ @ JsonProperty (JSON_PROPERTY_FILE_NAME )
121+ @ JsonInclude (value = JsonInclude .Include .USE_DEFAULTS )
122+
123+ public JsonNullable <String > getFileName_JsonNullable () {
124+ return fileName ;
125+ }
126+
127+ @ JsonProperty (JSON_PROPERTY_FILE_NAME )
128+ public void setFileName_JsonNullable (JsonNullable <String > fileName ) {
129+ this .fileName = fileName ;
130+ }
131+
132+ public void setFileName (String fileName ) {
133+ this .fileName = JsonNullable .<String >of (fileName );
134+ }
135+
136+
99137 @ Override
100138 public boolean equals (Object o ) {
101139 if (this == o ) {
@@ -106,6 +144,7 @@ public boolean equals(Object o) {
106144 }
107145 AuditTaskActionVM auditTaskActionVM = (AuditTaskActionVM ) o ;
108146 return equalsNullable (this .messageId , auditTaskActionVM .messageId ) &&
147+ equalsNullable (this .fileName , auditTaskActionVM .fileName ) &&
109148 super .equals (o );
110149 }
111150
@@ -115,7 +154,7 @@ private static <T> boolean equalsNullable(JsonNullable<T> a, JsonNullable<T> b)
115154
116155 @ Override
117156 public int hashCode () {
118- return Objects .hash (hashCodeNullable (messageId ), super .hashCode ());
157+ return Objects .hash (hashCodeNullable (messageId ), hashCodeNullable ( fileName ), super .hashCode ());
119158 }
120159
121160 private static <T > int hashCodeNullable (JsonNullable <T > a ) {
@@ -131,6 +170,7 @@ public String toString() {
131170 sb .append ("class AuditTaskActionVM {\n " );
132171 sb .append (" " ).append (toIndentedString (super .toString ())).append ("\n " );
133172 sb .append (" messageId: " ).append (toIndentedString (messageId )).append ("\n " );
173+ sb .append (" fileName: " ).append (toIndentedString (fileName )).append ("\n " );
134174 sb .append ("}" );
135175 return sb .toString ();
136176 }
0 commit comments