Skip to content

Commit 66e956a

Browse files
committed
fix(sample): update FinancialSample to use typed RelatedIdentifierNameEnum
ParameterListFinancialTransactions20240619.relatedIdentifierName is now typed as RelatedIdentifierNameEnum? rather than string?, so the sample code must use the enum member instead of a raw string literal.
1 parent f0383b6 commit 66e956a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Source/FikaAmazonAPI.SampleCode/FinancialSample.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public IList<Transaction> ListFinancialTransactions20240619_ByEventGroup(string
6565
new Parameter.Finance.ParameterListFinancialTransactions20240619()
6666
{
6767
postedAfter = DateTime.UtcNow.AddDays(-30),
68-
relatedIdentifierName = "FINANCIAL_EVENT_GROUP_ID",
68+
relatedIdentifierName = RelatedIdentifier.RelatedIdentifierNameEnum.FINANCIALEVENTGROUPID,
6969
relatedIdentifierValue = financialEventGroupId,
7070
});
7171
}

0 commit comments

Comments
 (0)