MeetingNotificationRecipientFailure Class
Information about a recipient that failed to receive a meeting notification.
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.
self is explicitly positional-only to allow self as a field name.
Constructor
MeetingNotificationRecipientFailure(*, recipientMri: str | None = None, errorCode: str | None = None, failureReason: str | None = None, **extra_data: Any)
Keyword-Only Parameters
| Name | Description |
|---|---|
|
recipientMri
|
Default value: None
|
|
errorCode
|
Default value: None
|
|
failureReason
|
Default value: None
|
Attributes
error_code
The error code.
error_code: str | None
failure_reason
The reason for the failure.
failure_reason: str | None
model_config
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
model_config: ClassVar[ConfigDict] = {'alias_generator': AliasGenerator(alias=None, validation_alias=<staticmethod(<function CustomBaseModel.validation_alias_generator>)>, serialization_alias=<staticmethod(<function CustomBaseModel.serialization_alias_generator>)>), 'arbitrary_types_allowed': True, 'extra': 'allow', 'populate_by_name': True, 'serialize_by_alias': True, 'validate_by_alias': True, 'validate_by_name': True}
recipient_mri
The MRI of the recipient.
recipient_mri: str | None