Skip to content

Commit 69f3307

Browse files
committed
ECWID-93812 Replace IgnoreNullable with AllowNullable
1 parent 7654a86 commit 69f3307

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/test/kotlin/com/ecwid/apiclient/v3/rule/nullablepropertyrules/FetchedStoreProfileRules.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ val fetchedStoreProfileNullablePropertyRules: List<NullablePropertyRule<*, *>> =
3131
IgnoreNullable(FetchedStoreProfile.Account::accountNickName),
3232
IgnoreNullable(FetchedStoreProfile.Account::availableFeatures),
3333
IgnoreNullable(FetchedStoreProfile.Account::whiteLabel),
34-
IgnoreNullable(FetchedStoreProfile.Account::brandName),
35-
IgnoreNullable(FetchedStoreProfile.Account::supportEmail),
34+
AllowNullable(FetchedStoreProfile.Account::brandName),
35+
AllowNullable(FetchedStoreProfile.Account::supportEmail),
3636
IgnoreNullable(FetchedStoreProfile.ApplePay::gateway),
3737
IgnoreNullable(FetchedStoreProfile.ApplePay::verificationFileUrl),
3838
IgnoreNullable(FetchedStoreProfile.BusinessRegistrationID::name),

0 commit comments

Comments
 (0)