@@ -36,6 +36,14 @@ public class TemplateDetailsResponsePreassignedPerson {
3636 @ SerializedName (SERIALIZED_NAME_TYPE )
3737 private String type ;
3838
39+ public static final String SERIALIZED_NAME_PLACEHOLDER_NAME = "placeholder_name" ;
40+ @ SerializedName (SERIALIZED_NAME_PLACEHOLDER_NAME )
41+ private String placeholderName ;
42+
43+ public static final String SERIALIZED_NAME_PLACEHOLDER_SOURCE = "placeholder_source" ;
44+ @ SerializedName (SERIALIZED_NAME_PLACEHOLDER_SOURCE )
45+ private String placeholderSource ;
46+
3947 public TemplateDetailsResponsePreassignedPerson () {
4048 }
4149
@@ -85,6 +93,52 @@ public void setType(String type) {
8593 }
8694
8795
96+ public TemplateDetailsResponsePreassignedPerson placeholderName (String placeholderName ) {
97+
98+ this .placeholderName = placeholderName ;
99+ return this ;
100+ }
101+
102+ /**
103+ * Get placeholderName
104+ * @return placeholderName
105+ **/
106+ @ javax .annotation .Nullable
107+ @ ApiModelProperty (example = "Employee" , value = "" )
108+
109+ public String getPlaceholderName () {
110+ return placeholderName ;
111+ }
112+
113+
114+ public void setPlaceholderName (String placeholderName ) {
115+ this .placeholderName = placeholderName ;
116+ }
117+
118+
119+ public TemplateDetailsResponsePreassignedPerson placeholderSource (String placeholderSource ) {
120+
121+ this .placeholderSource = placeholderSource ;
122+ return this ;
123+ }
124+
125+ /**
126+ * Get placeholderSource
127+ * @return placeholderSource
128+ **/
129+ @ javax .annotation .Nullable
130+ @ ApiModelProperty (example = "bamboohr" , value = "" )
131+
132+ public String getPlaceholderSource () {
133+ return placeholderSource ;
134+ }
135+
136+
137+ public void setPlaceholderSource (String placeholderSource ) {
138+ this .placeholderSource = placeholderSource ;
139+ }
140+
141+
88142 @ Override
89143 public boolean equals (Object o ) {
90144 if (this == o ) {
@@ -95,12 +149,14 @@ public boolean equals(Object o) {
95149 }
96150 TemplateDetailsResponsePreassignedPerson templateDetailsResponsePreassignedPerson = (TemplateDetailsResponsePreassignedPerson ) o ;
97151 return Objects .equals (this .email , templateDetailsResponsePreassignedPerson .email ) &&
98- Objects .equals (this .type , templateDetailsResponsePreassignedPerson .type );
152+ Objects .equals (this .type , templateDetailsResponsePreassignedPerson .type ) &&
153+ Objects .equals (this .placeholderName , templateDetailsResponsePreassignedPerson .placeholderName ) &&
154+ Objects .equals (this .placeholderSource , templateDetailsResponsePreassignedPerson .placeholderSource );
99155 }
100156
101157 @ Override
102158 public int hashCode () {
103- return Objects .hash (email , type );
159+ return Objects .hash (email , type , placeholderName , placeholderSource );
104160 }
105161
106162 @ Override
@@ -109,6 +165,8 @@ public String toString() {
109165 sb .append ("class TemplateDetailsResponsePreassignedPerson {\n " );
110166 sb .append (" email: " ).append (toIndentedString (email )).append ("\n " );
111167 sb .append (" type: " ).append (toIndentedString (type )).append ("\n " );
168+ sb .append (" placeholderName: " ).append (toIndentedString (placeholderName )).append ("\n " );
169+ sb .append (" placeholderSource: " ).append (toIndentedString (placeholderSource )).append ("\n " );
112170 sb .append ("}" );
113171 return sb .toString ();
114172 }
0 commit comments