Class: MicrosoftGraph::Models::AccessPackageTextInputQuestion

Inherits:
AccessPackageQuestion show all
Includes:
MicrosoftKiotaAbstractions::Parsable
Defined in:
lib/models/access_package_text_input_question.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from AccessPackageQuestion

#is_answer_editable, #is_answer_editable=, #is_required, #is_required=, #localizations, #localizations=, #sequence, #sequence=, #text, #text=

Methods inherited from Entity

#additional_data, #additional_data=, #id, #id=, #odata_type, #odata_type=

Constructor Details

#initializeObject

Instantiates a new accessPackageTextInputQuestion and sets the default values.



19
20
21
22
# File 'lib/models/access_package_text_input_question.rb', line 19

def initialize()
    super
    @odata_type = "#microsoft.graph.accessPackageTextInputQuestion"
end

Class Method Details

.create_from_discriminator_value(parse_node) ⇒ Object

Creates a new instance of the appropriate class based on discriminator value

Parameters:

  • parse_node

    The parse node to use to read the discriminator value and create the object

Returns:

  • a access_package_text_input_question

Raises:

  • (StandardError)


28
29
30
31
# File 'lib/models/access_package_text_input_question.rb', line 28

def self.create_from_discriminator_value(parse_node)
    raise StandardError, 'parse_node cannot be null' if parse_node.nil?
    return AccessPackageTextInputQuestion.new
end

Instance Method Details

#get_field_deserializersObject

The deserialization information for the current model

Returns:

  • a i_dictionary



36
37
38
39
40
41
# File 'lib/models/access_package_text_input_question.rb', line 36

def get_field_deserializers()
    return super.merge({
        "isSingleLineQuestion" => lambda {|n| @is_single_line_question = n.get_boolean_value() },
        "regexPattern" => lambda {|n| @regex_pattern = n.get_string_value() },
    })
end

#is_single_line_questionObject

Gets the isSingleLineQuestion property value. Indicates whether the answer will be in single or multiple line format.

Returns:

  • a boolean



46
47
48
# File 'lib/models/access_package_text_input_question.rb', line 46

def is_single_line_question
    return @is_single_line_question
end

#is_single_line_question=(value) ⇒ Object

Sets the isSingleLineQuestion property value. Indicates whether the answer will be in single or multiple line format.

Parameters:

  • value

    Value to set for the isSingleLineQuestion property.

Returns:

  • a void



54
55
56
# File 'lib/models/access_package_text_input_question.rb', line 54

def is_single_line_question=(value)
    @is_single_line_question = value
end

#regex_patternObject

Gets the regexPattern property value. The regular expression pattern which any answer to this question must match.

Returns:

  • a string



61
62
63
# File 'lib/models/access_package_text_input_question.rb', line 61

def regex_pattern
    return @regex_pattern
end

#regex_pattern=(value) ⇒ Object

Sets the regexPattern property value. The regular expression pattern which any answer to this question must match.

Parameters:

  • value

    Value to set for the regexPattern property.

Returns:

  • a void



69
70
71
# File 'lib/models/access_package_text_input_question.rb', line 69

def regex_pattern=(value)
    @regex_pattern = value
end

#serialize(writer) ⇒ Object

Serializes information the current object

Parameters:

  • writer

    Serialization writer to use to serialize this model

Returns:

  • a void

Raises:

  • (StandardError)


77
78
79
80
81
82
# File 'lib/models/access_package_text_input_question.rb', line 77

def serialize(writer)
    raise StandardError, 'writer cannot be null' if writer.nil?
    super
    writer.write_boolean_value("isSingleLineQuestion", @is_single_line_question)
    writer.write_string_value("regexPattern", @regex_pattern)
end