Skip to content
This repository has been archived by the owner on Nov 21, 2024. It is now read-only.

Commit

Permalink
add: voice policy id field to device template model
Browse files Browse the repository at this point in the history
  • Loading branch information
sbasan committed Oct 27, 2024
1 parent 1e4b510 commit 3adfb74
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions catalystwan/api/templates/device_template/device_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,9 @@ class DeviceTemplate(BaseModel):
security_policy_id: str = Field(
default="", serialization_alias="securityPolicyId", validation_alias="securityPolicyId"
)
voice_policy_id: Optional[str] = Field(
default=None, serialization_alias="voicePolicyId", validation_alias="voicePolicyId"
)
template_configuration_edited: Optional[str] = Field(
default=None, serialization_alias="templateConfigurationEdited", validation_alias="templateConfigurationEdited"
)
Expand Down

0 comments on commit 3adfb74

Please sign in to comment.