-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5edd25f
commit 6df93fb
Showing
20 changed files
with
244 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# This file was auto-generated by Fern from our API Definition. | ||
|
||
from __future__ import annotations | ||
|
||
import typing | ||
|
||
import typing_extensions | ||
|
||
from .twilio_telephony_metadata import TwilioTelephonyMetadata | ||
from .vonage_telephony_metadata import VonageTelephonyMetadata | ||
|
||
|
||
class CallTelephonyMetadata_TelephonyMetadataVonage(VonageTelephonyMetadata): | ||
type: typing_extensions.Literal["telephony_metadata_vonage"] | ||
|
||
class Config: | ||
frozen = True | ||
smart_union = True | ||
allow_population_by_field_name = True | ||
|
||
|
||
class CallTelephonyMetadata_TelephonyMetadataTwilio(TwilioTelephonyMetadata): | ||
type: typing_extensions.Literal["telephony_metadata_twilio"] | ||
|
||
class Config: | ||
frozen = True | ||
smart_union = True | ||
allow_population_by_field_name = True | ||
|
||
|
||
CallTelephonyMetadata = typing.Union[ | ||
CallTelephonyMetadata_TelephonyMetadataVonage, CallTelephonyMetadata_TelephonyMetadataTwilio | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.