Class: MicrosoftGraph::Models::PrintOperation

Inherits:
Entity
  • Object
show all
Includes:
MicrosoftKiotaAbstractions::Parsable
Defined in:
lib/models/print_operation.rb

Direct Known Subclasses

PrinterCreateOperation

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Entity

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

Constructor Details

#initializeObject

Instantiates a new printOperation and sets the default values.



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

def initialize()
    super
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 print_operation

Raises:

  • (StandardError)


43
44
45
46
47
48
49
50
51
52
53
54
# File 'lib/models/print_operation.rb', line 43

def self.create_from_discriminator_value(parse_node)
    raise StandardError, 'parse_node cannot be null' if parse_node.nil?
    mapping_value_node = parse_node.get_child_node("@odata.type")
    unless mapping_value_node.nil? then
        mapping_value = mapping_value_node.get_string_value
        case mapping_value
            when "#microsoft.graph.printerCreateOperation"
                return PrinterCreateOperation.new
        end
    end
    return PrintOperation.new
end

Instance Method Details

#created_date_timeObject

Gets the createdDateTime property value. The DateTimeOffset when the operation was created. Read-only.

Returns:

  • a date_time



27
28
29
# File 'lib/models/print_operation.rb', line 27

def created_date_time
    return @created_date_time
end

#created_date_time=(value) ⇒ Object

Sets the createdDateTime property value. The DateTimeOffset when the operation was created. Read-only.

Parameters:

  • value

    Value to set for the createdDateTime property.

Returns:

  • a void



35
36
37
# File 'lib/models/print_operation.rb', line 35

def created_date_time=(value)
    @created_date_time = value
end

#get_field_deserializersObject

The deserialization information for the current model

Returns:

  • a i_dictionary



59
60
61
62
63
64
# File 'lib/models/print_operation.rb', line 59

def get_field_deserializers()
    return super.merge({
        "createdDateTime" => lambda {|n| @created_date_time = n.get_date_time_value() },
        "status" => lambda {|n| @status = n.get_object_value(lambda {|pn| MicrosoftGraph::Models::PrintOperationStatus.create_from_discriminator_value(pn) }) },
    })
end

#serialize(writer) ⇒ Object

Serializes information the current object

Parameters:

  • writer

    Serialization writer to use to serialize this model

Returns:

  • a void

Raises:

  • (StandardError)


70
71
72
73
74
75
# File 'lib/models/print_operation.rb', line 70

def serialize(writer)
    raise StandardError, 'writer cannot be null' if writer.nil?
    super
    writer.write_date_time_value("createdDateTime", @created_date_time)
    writer.write_object_value("status", @status)
end

#statusObject

Gets the status property value. The status property

Returns:

  • a print_operation_status



80
81
82
# File 'lib/models/print_operation.rb', line 80

def status
    return @status
end

#status=(value) ⇒ Object

Sets the status property value. The status property

Parameters:

  • value

    Value to set for the status property.

Returns:

  • a void



88
89
90
# File 'lib/models/print_operation.rb', line 88

def status=(value)
    @status = value
end