Class: MicrosoftGraph::DeviceManagement::Reports::GetSettingNonComplianceReport::GetSettingNonComplianceReportPostRequestBody
- Inherits:
-
Object
- Object
- MicrosoftGraph::DeviceManagement::Reports::GetSettingNonComplianceReport::GetSettingNonComplianceReportPostRequestBody
- Includes:
- MicrosoftKiotaAbstractions::AdditionalDataHolder, MicrosoftKiotaAbstractions::Parsable
- Defined in:
- lib/device_management/reports/get_setting_non_compliance_report/get_setting_non_compliance_report_post_request_body.rb
Class Method Summary collapse
-
.create_from_discriminator_value(parse_node) ⇒ Object
Creates a new instance of the appropriate class based on discriminator value.
Instance Method Summary collapse
-
#additional_data ⇒ Object
Gets the additionalData property value.
-
#additional_data=(value) ⇒ Object
Sets the additionalData property value.
-
#filter ⇒ Object
Gets the filter property value.
-
#filter=(value) ⇒ Object
Sets the filter property value.
-
#get_field_deserializers ⇒ Object
The deserialization information for the current model.
-
#group_by ⇒ Object
Gets the groupBy property value.
-
#group_by=(value) ⇒ Object
Sets the groupBy property value.
-
#initialize ⇒ Object
constructor
Instantiates a new getSettingNonComplianceReportPostRequestBody and sets the default values.
-
#name ⇒ Object
Gets the name property value.
-
#name=(value) ⇒ Object
Sets the name property value.
-
#order_by ⇒ Object
Gets the orderBy property value.
-
#order_by=(value) ⇒ Object
Sets the orderBy property value.
-
#search ⇒ Object
Gets the search property value.
-
#search=(value) ⇒ Object
Sets the search property value.
-
#select ⇒ Object
Gets the select property value.
-
#select=(value) ⇒ Object
Sets the select property value.
-
#serialize(writer) ⇒ Object
Serializes information the current object.
-
#session_id ⇒ Object
Gets the sessionId property value.
-
#session_id=(value) ⇒ Object
Sets the sessionId property value.
-
#skip ⇒ Object
Gets the skip property value.
-
#skip=(value) ⇒ Object
Sets the skip property value.
-
#top ⇒ Object
Gets the top property value.
-
#top=(value) ⇒ Object
Sets the top property value.
Constructor Details
#initialize ⇒ Object
Instantiates a new getSettingNonComplianceReportPostRequestBody and sets the default values.
62 63 64 |
# File 'lib/device_management/reports/get_setting_non_compliance_report/get_setting_non_compliance_report_post_request_body.rb', line 62 def initialize() @additional_data = Hash.new end |
Class Method Details
.create_from_discriminator_value(parse_node) ⇒ Object
Creates a new instance of the appropriate class based on discriminator value
70 71 72 73 |
# File 'lib/device_management/reports/get_setting_non_compliance_report/get_setting_non_compliance_report_post_request_body.rb', line 70 def self.create_from_discriminator_value(parse_node) raise StandardError, 'parse_node cannot be null' if parse_node.nil? return GetSettingNonComplianceReportPostRequestBody.new end |
Instance Method Details
#additional_data ⇒ Object
Gets the additionalData property value. Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
47 48 49 |
# File 'lib/device_management/reports/get_setting_non_compliance_report/get_setting_non_compliance_report_post_request_body.rb', line 47 def additional_data return @additional_data end |
#additional_data=(value) ⇒ Object
Sets the additionalData property value. Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
55 56 57 |
# File 'lib/device_management/reports/get_setting_non_compliance_report/get_setting_non_compliance_report_post_request_body.rb', line 55 def additional_data=(value) @additional_data = value end |
#filter ⇒ Object
Gets the filter property value. The filter property
78 79 80 |
# File 'lib/device_management/reports/get_setting_non_compliance_report/get_setting_non_compliance_report_post_request_body.rb', line 78 def filter return @filter end |
#filter=(value) ⇒ Object
Sets the filter property value. The filter property
86 87 88 |
# File 'lib/device_management/reports/get_setting_non_compliance_report/get_setting_non_compliance_report_post_request_body.rb', line 86 def filter=(value) @filter = value end |
#get_field_deserializers ⇒ Object
The deserialization information for the current model
93 94 95 96 97 98 99 100 101 102 103 104 105 |
# File 'lib/device_management/reports/get_setting_non_compliance_report/get_setting_non_compliance_report_post_request_body.rb', line 93 def get_field_deserializers() return { "filter" => lambda {|n| @filter = n.get_string_value() }, "groupBy" => lambda {|n| @group_by = n.get_collection_of_primitive_values(String) }, "name" => lambda {|n| @name = n.get_string_value() }, "orderBy" => lambda {|n| @order_by = n.get_collection_of_primitive_values(String) }, "search" => lambda {|n| @search = n.get_string_value() }, "select" => lambda {|n| @select = n.get_collection_of_primitive_values(String) }, "sessionId" => lambda {|n| @session_id = n.get_string_value() }, "skip" => lambda {|n| @skip = n.get_number_value() }, "top" => lambda {|n| @top = n.get_number_value() }, } end |
#group_by ⇒ Object
Gets the groupBy property value. The groupBy property
110 111 112 |
# File 'lib/device_management/reports/get_setting_non_compliance_report/get_setting_non_compliance_report_post_request_body.rb', line 110 def group_by return @group_by end |
#group_by=(value) ⇒ Object
Sets the groupBy property value. The groupBy property
118 119 120 |
# File 'lib/device_management/reports/get_setting_non_compliance_report/get_setting_non_compliance_report_post_request_body.rb', line 118 def group_by=(value) @group_by = value end |
#name ⇒ Object
Gets the name property value. The name property
125 126 127 |
# File 'lib/device_management/reports/get_setting_non_compliance_report/get_setting_non_compliance_report_post_request_body.rb', line 125 def name return @name end |
#name=(value) ⇒ Object
Sets the name property value. The name property
133 134 135 |
# File 'lib/device_management/reports/get_setting_non_compliance_report/get_setting_non_compliance_report_post_request_body.rb', line 133 def name=(value) @name = value end |
#order_by ⇒ Object
Gets the orderBy property value. The orderBy property
140 141 142 |
# File 'lib/device_management/reports/get_setting_non_compliance_report/get_setting_non_compliance_report_post_request_body.rb', line 140 def order_by return @order_by end |
#order_by=(value) ⇒ Object
Sets the orderBy property value. The orderBy property
148 149 150 |
# File 'lib/device_management/reports/get_setting_non_compliance_report/get_setting_non_compliance_report_post_request_body.rb', line 148 def order_by=(value) @order_by = value end |
#search ⇒ Object
Gets the search property value. The search property
155 156 157 |
# File 'lib/device_management/reports/get_setting_non_compliance_report/get_setting_non_compliance_report_post_request_body.rb', line 155 def search return @search end |
#search=(value) ⇒ Object
Sets the search property value. The search property
163 164 165 |
# File 'lib/device_management/reports/get_setting_non_compliance_report/get_setting_non_compliance_report_post_request_body.rb', line 163 def search=(value) @search = value end |
#select ⇒ Object
Gets the select property value. The select property
170 171 172 |
# File 'lib/device_management/reports/get_setting_non_compliance_report/get_setting_non_compliance_report_post_request_body.rb', line 170 def select return @select end |
#select=(value) ⇒ Object
Sets the select property value. The select property
178 179 180 |
# File 'lib/device_management/reports/get_setting_non_compliance_report/get_setting_non_compliance_report_post_request_body.rb', line 178 def select=(value) @select = value end |
#serialize(writer) ⇒ Object
Serializes information the current object
186 187 188 189 190 191 192 193 194 195 196 197 198 |
# File 'lib/device_management/reports/get_setting_non_compliance_report/get_setting_non_compliance_report_post_request_body.rb', line 186 def serialize(writer) raise StandardError, 'writer cannot be null' if writer.nil? writer.write_string_value("filter", @filter) writer.write_collection_of_primitive_values("groupBy", @group_by) writer.write_string_value("name", @name) writer.write_collection_of_primitive_values("orderBy", @order_by) writer.write_string_value("search", @search) writer.write_collection_of_primitive_values("select", @select) writer.write_string_value("sessionId", @session_id) writer.write_number_value("skip", @skip) writer.write_number_value("top", @top) writer.write_additional_data(@additional_data) end |
#session_id ⇒ Object
Gets the sessionId property value. The sessionId property
203 204 205 |
# File 'lib/device_management/reports/get_setting_non_compliance_report/get_setting_non_compliance_report_post_request_body.rb', line 203 def session_id return @session_id end |
#session_id=(value) ⇒ Object
Sets the sessionId property value. The sessionId property
211 212 213 |
# File 'lib/device_management/reports/get_setting_non_compliance_report/get_setting_non_compliance_report_post_request_body.rb', line 211 def session_id=(value) @session_id = value end |
#skip ⇒ Object
Gets the skip property value. The skip property
218 219 220 |
# File 'lib/device_management/reports/get_setting_non_compliance_report/get_setting_non_compliance_report_post_request_body.rb', line 218 def skip return @skip end |
#skip=(value) ⇒ Object
Sets the skip property value. The skip property
226 227 228 |
# File 'lib/device_management/reports/get_setting_non_compliance_report/get_setting_non_compliance_report_post_request_body.rb', line 226 def skip=(value) @skip = value end |
#top ⇒ Object
Gets the top property value. The top property
233 234 235 |
# File 'lib/device_management/reports/get_setting_non_compliance_report/get_setting_non_compliance_report_post_request_body.rb', line 233 def top return @top end |
#top=(value) ⇒ Object
Sets the top property value. The top property
241 242 243 |
# File 'lib/device_management/reports/get_setting_non_compliance_report/get_setting_non_compliance_report_post_request_body.rb', line 241 def top=(value) @top = value end |