-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathhttp_action_config.go
More file actions
141 lines (138 loc) · 5.5 KB
/
Copy pathhttp_action_config.go
File metadata and controls
141 lines (138 loc) · 5.5 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
// Code generated by Microsoft Kiota - DO NOT EDIT.
// Changes may cause incorrect behavior and will be lost if the code is regenerated.
package models
import (
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91 "github.com/microsoft/kiota-abstractions-go/serialization"
)
type HttpActionConfig struct {
// Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
additionalData map[string]any
// Optional formatter to transform payload before sending; when set, wraps formatted text in {"text": "..."}
formatter *string
// Action type
typeEscaped *string
// HTTP address
url *string
}
// NewHttpActionConfig instantiates a new HttpActionConfig and sets the default values.
func NewHttpActionConfig()(*HttpActionConfig) {
m := &HttpActionConfig{
}
m.SetAdditionalData(make(map[string]any))
return m
}
// CreateHttpActionConfigFromDiscriminatorValue creates a new instance of the appropriate class based on discriminator value
// returns a Parsable when successful
func CreateHttpActionConfigFromDiscriminatorValue(parseNode i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, error) {
return NewHttpActionConfig(), nil
}
// GetAdditionalData gets the AdditionalData property value. Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
// returns a map[string]any when successful
func (m *HttpActionConfig) GetAdditionalData()(map[string]any) {
return m.additionalData
}
// GetFieldDeserializers the deserialization information for the current model
// returns a map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error) when successful
func (m *HttpActionConfig) GetFieldDeserializers()(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error)) {
res := make(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error))
res["formatter"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetStringValue()
if err != nil {
return err
}
if val != nil {
m.SetFormatter(val)
}
return nil
}
res["type"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetStringValue()
if err != nil {
return err
}
if val != nil {
m.SetTypeEscaped(val)
}
return nil
}
res["url"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetStringValue()
if err != nil {
return err
}
if val != nil {
m.SetUrl(val)
}
return nil
}
return res
}
// GetFormatter gets the formatter property value. Optional formatter to transform payload before sending; when set, wraps formatted text in {"text": "..."}
// returns a *string when successful
func (m *HttpActionConfig) GetFormatter()(*string) {
return m.formatter
}
// GetTypeEscaped gets the type property value. Action type
// returns a *string when successful
func (m *HttpActionConfig) GetTypeEscaped()(*string) {
return m.typeEscaped
}
// GetUrl gets the url property value. HTTP address
// returns a *string when successful
func (m *HttpActionConfig) GetUrl()(*string) {
return m.url
}
// Serialize serializes information the current object
func (m *HttpActionConfig) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.SerializationWriter)(error) {
{
err := writer.WriteStringValue("formatter", m.GetFormatter())
if err != nil {
return err
}
}
{
err := writer.WriteStringValue("type", m.GetTypeEscaped())
if err != nil {
return err
}
}
{
err := writer.WriteStringValue("url", m.GetUrl())
if err != nil {
return err
}
}
{
err := writer.WriteAdditionalData(m.GetAdditionalData())
if err != nil {
return err
}
}
return nil
}
// SetAdditionalData sets the AdditionalData property value. Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
func (m *HttpActionConfig) SetAdditionalData(value map[string]any)() {
m.additionalData = value
}
// SetFormatter sets the formatter property value. Optional formatter to transform payload before sending; when set, wraps formatted text in {"text": "..."}
func (m *HttpActionConfig) SetFormatter(value *string)() {
m.formatter = value
}
// SetTypeEscaped sets the type property value. Action type
func (m *HttpActionConfig) SetTypeEscaped(value *string)() {
m.typeEscaped = value
}
// SetUrl sets the url property value. HTTP address
func (m *HttpActionConfig) SetUrl(value *string)() {
m.url = value
}
type HttpActionConfigable interface {
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.AdditionalDataHolder
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable
GetFormatter()(*string)
GetTypeEscaped()(*string)
GetUrl()(*string)
SetFormatter(value *string)()
SetTypeEscaped(value *string)()
SetUrl(value *string)()
}