You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Information of the professional entity that sells the property inventory or related services.
45
-
* @param contactMessage The trader contact message.
46
42
* @param name The trader name.
47
43
* @param address
48
44
* @param businessRegisterName Name of the register where the trader is registered, and is related to the `business_register_number`
49
45
* @param businessRegisterNumber Business registration number
50
46
* @param selfCertification Certification that the trader has confirmed their commitment to only offer products or services that comply with the applicable rules of Union law.
47
+
* @param contactMessage The trader contact message.
51
48
* @param rightToWithdrawMessage The trader right to withdraw message.
52
49
* @param email The trader email address.
53
50
* @param phone The trader phone number.
54
51
*/
55
52
data classTraderDetailsInner(
56
-
// The trader contact message.
57
-
@JsonProperty("contact_message")
58
-
@JsonSetter(nulls =Nulls.AS_EMPTY)
59
-
@field:NotNull
60
-
@field:Valid
61
-
valcontactMessage: kotlin.String? = "",
62
53
// The trader name.
63
54
@JsonProperty("name")
64
55
@field:Valid
@@ -78,6 +69,10 @@ data class TraderDetailsInner(
78
69
@JsonProperty("self_certification")
79
70
@field:Valid
80
71
valselfCertification: kotlin.Boolean? = null,
72
+
// The trader contact message.
73
+
@JsonProperty("contact_message")
74
+
@field:Valid
75
+
valcontactMessage: kotlin.String? = null,
81
76
// The trader right to withdraw message.
82
77
@JsonProperty("right_to_withdraw_message")
83
78
@field:Valid
@@ -97,18 +92,16 @@ data class TraderDetailsInner(
0 commit comments