Skip to content

Commit

Permalink
Update indicator model customAssociationName: str -> customAssociatio…
Browse files Browse the repository at this point in the history
…nNames: list[str]
  • Loading branch information
cblades-tc committed Feb 9, 2024
1 parent ead99ee commit 0bdf537
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tcex/api/tc/v3/indicators/indicator_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,12 +134,12 @@ class IndicatorModel(
read_only=False,
title='confidence',
)
custom_association_name: Optional[str] = Field(
custom_association_names: Optional[List[str]] = Field(
None,
description='The custom association name if assigned to this indicator.',
description='The custom association names if assigned to this indicator.',
methods=['POST', 'PUT'],
read_only=False,
title='customAssociationName',
title='customAssociationNames',
)
custom_associations: Optional['IndicatorsModel'] = Field(
None,
Expand Down

0 comments on commit 0bdf537

Please sign in to comment.