forked from microsoftgraph/msgraph-sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadd_in.py
More file actions
69 lines (59 loc) · 2.9 KB
/
add_in.py
File metadata and controls
69 lines (59 loc) · 2.9 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
from __future__ import annotations
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, Callable, Dict, List, Optional, TYPE_CHECKING, Union
from uuid import UUID
if TYPE_CHECKING:
from .key_value import KeyValue
@dataclass
class AddIn(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 id property
id: Optional[UUID] = None
# The OdataType property
odata_type: Optional[str] = None
# The properties property
properties: Optional[List[KeyValue]] = None
# The type property
type: Optional[str] = None
@staticmethod
def create_from_discriminator_value(parse_node: Optional[ParseNode] = None) -> AddIn:
"""
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: AddIn
"""
if not parse_node:
raise TypeError("parse_node cannot be null.")
return AddIn()
def get_field_deserializers(self,) -> Dict[str, Callable[[ParseNode], None]]:
"""
The deserialization information for the current model
Returns: Dict[str, Callable[[ParseNode], None]]
"""
from .key_value import KeyValue
from .key_value import KeyValue
fields: Dict[str, Callable[[Any], None]] = {
"id": lambda n : setattr(self, 'id', n.get_uuid_value()),
"@odata.type": lambda n : setattr(self, 'odata_type', n.get_str_value()),
"properties": lambda n : setattr(self, 'properties', n.get_collection_of_object_values(KeyValue)),
"type": lambda n : setattr(self, 'type', n.get_str_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 not writer:
raise TypeError("writer cannot be null.")
writer.write_uuid_value("id", self.id)
writer.write_str_value("@odata.type", self.odata_type)
writer.write_collection_of_object_values("properties", self.properties)
writer.write_str_value("type", self.type)
writer.write_additional_data_value(self.additional_data)