-
Notifications
You must be signed in to change notification settings - Fork 143
Expand file tree
/
Copy pathconversation_rating.py
More file actions
47 lines (36 loc) · 1.44 KB
/
conversation_rating.py
File metadata and controls
47 lines (36 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# This file was auto-generated by Fern from our API Definition.
import typing
import pydantic
from ..core.pydantic_utilities import IS_PYDANTIC_V2
from ..core.unchecked_base_model import UncheckedBaseModel
from .contact_reference import ContactReference
from .reference import Reference
class ConversationRating(UncheckedBaseModel):
"""
The Conversation Rating object which contains information on the rating and/or remark added by a Contact and the Admin assigned to the conversation.
"""
rating: typing.Optional[int] = pydantic.Field(default=None)
"""
The rating, between 1 and 5, for the conversation.
"""
remark: typing.Optional[str] = pydantic.Field(default=None)
"""
An optional field to add a remark to correspond to the number rating
"""
created_at: typing.Optional[int] = pydantic.Field(default=None)
"""
The time the rating was requested in the conversation being rated.
"""
updated_at: typing.Optional[int] = pydantic.Field(default=None)
"""
The time the rating was last updated.
"""
contact: typing.Optional[ContactReference] = None
teammate: typing.Optional[Reference] = None
if IS_PYDANTIC_V2:
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
else:
class Config:
frozen = True
smart_union = True
extra = pydantic.Extra.allow