-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathattachment_item.py
More file actions
81 lines (71 loc) · 3.98 KB
/
attachment_item.py
File metadata and controls
81 lines (71 loc) · 3.98 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
from __future__ import annotations
from collections.abc import Callable
from dataclasses import dataclass, field
from kiota_abstractions.serialization import AdditionalDataHolder, Parsable, ParseNode, SerializationWriter
from kiota_abstractions.store import BackedModel, BackingStore, BackingStoreFactorySingleton
from typing import Any, Optional, TYPE_CHECKING, Union
if TYPE_CHECKING:
from .attachment_type import AttachmentType
@dataclass
class AttachmentItem(AdditionalDataHolder, BackedModel, Parsable):
# Stores model information.
backing_store: BackingStore = field(default_factory=BackingStoreFactorySingleton(backing_store_factory=None).backing_store_factory.create_backing_store, repr=False)
# Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
additional_data: dict[str, Any] = field(default_factory=dict)
# The type of attachment. The possible values are: file, item, reference. Required.
attachment_type: Optional[AttachmentType] = None
# The CID or Content-Id of the attachment for referencing for the in-line attachments using the <img src='cid:contentId'> tag in HTML messages. Optional.
content_id: Optional[str] = None
# The nature of the data in the attachment. Optional.
content_type: Optional[str] = None
# true if the attachment is an inline attachment; otherwise, false. Optional.
is_inline: Optional[bool] = None
# The display name of the attachment. This can be a descriptive string and doesn't have to be the actual file name. Required.
name: Optional[str] = None
# The OdataType property
odata_type: Optional[str] = None
# The length of the attachment in bytes. Required.
size: Optional[int] = None
@staticmethod
def create_from_discriminator_value(parse_node: ParseNode) -> AttachmentItem:
"""
Creates a new instance of the appropriate class based on discriminator value
param parse_node: The parse node to use to read the discriminator value and create the object
Returns: AttachmentItem
"""
if parse_node is None:
raise TypeError("parse_node cannot be null.")
return AttachmentItem()
def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]:
"""
The deserialization information for the current model
Returns: dict[str, Callable[[ParseNode], None]]
"""
from .attachment_type import AttachmentType
from .attachment_type import AttachmentType
fields: dict[str, Callable[[Any], None]] = {
"attachmentType": lambda n : setattr(self, 'attachment_type', n.get_enum_value(AttachmentType)),
"contentId": lambda n : setattr(self, 'content_id', n.get_str_value()),
"contentType": lambda n : setattr(self, 'content_type', n.get_str_value()),
"isInline": lambda n : setattr(self, 'is_inline', n.get_bool_value()),
"name": lambda n : setattr(self, 'name', n.get_str_value()),
"@odata.type": lambda n : setattr(self, 'odata_type', n.get_str_value()),
"size": lambda n : setattr(self, 'size', n.get_int_value()),
}
return fields
def serialize(self,writer: SerializationWriter) -> None:
"""
Serializes information the current object
param writer: Serialization writer to use to serialize this model
Returns: None
"""
if writer is None:
raise TypeError("writer cannot be null.")
writer.write_enum_value("attachmentType", self.attachment_type)
writer.write_str_value("contentId", self.content_id)
writer.write_str_value("contentType", self.content_type)
writer.write_bool_value("isInline", self.is_inline)
writer.write_str_value("name", self.name)
writer.write_str_value("@odata.type", self.odata_type)
writer.write_int_value("size", self.size)
writer.write_additional_data_value(self.additional_data)