Skip to content

Commit d98442a

Browse files
committed
fix: update address property in Contact class to remove default value
- Changed the address property in the Contact class to remove the default null value, aligning with the deprecation notice for this property.
1 parent 61e78c5 commit d98442a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Resources/Contacts/Contacts/Contact.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class Contact extends Resource
3434
public ?string $profile_image;
3535

3636
/** @deprecated use street_name, house_number, address_addition instead. This property is not included in the create and update requests. */
37-
public ?string $address = null;
37+
public ?string $address;
3838

3939
public function __construct(
4040
public int|ContactType $contact_type_id = ContactType::COMPANY,

0 commit comments

Comments
 (0)