Class: Google::Apis::AndroidmanagementV1::DisplayProp

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/androidmanagement_v1/classes.rb,
generated/google/apis/androidmanagement_v1/representations.rb,
generated/google/apis/androidmanagement_v1/representations.rb

Overview

Device display information.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ DisplayProp

Returns a new instance of DisplayProp



927
928
929
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 927

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#densityFixnum

Display density expressed as dots-per-inch. Corresponds to the JSON property density

Returns:

  • (Fixnum)


895
896
897
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 895

def density
  @density
end

#display_idFixnum

Unique display id. Corresponds to the JSON property displayId

Returns:

  • (Fixnum)


900
901
902
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 900

def display_id
  @display_id
end

#heightFixnum

Display height in pixels. Corresponds to the JSON property height

Returns:

  • (Fixnum)


905
906
907
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 905

def height
  @height
end

#nameString

Name of the display. Corresponds to the JSON property name

Returns:

  • (String)


910
911
912
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 910

def name
  @name
end

#refresh_rateFixnum

Refresh rate of the display in frames per second. Corresponds to the JSON property refreshRate

Returns:

  • (Fixnum)


915
916
917
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 915

def refresh_rate
  @refresh_rate
end

#stateString

State of the display. Corresponds to the JSON property state

Returns:

  • (String)


920
921
922
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 920

def state
  @state
end

#widthFixnum

Display width in pixels. Corresponds to the JSON property width

Returns:

  • (Fixnum)


925
926
927
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 925

def width
  @width
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



932
933
934
935
936
937
938
939
940
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 932

def update!(**args)
  @density = args[:density] if args.key?(:density)
  @display_id = args[:display_id] if args.key?(:display_id)
  @height = args[:height] if args.key?(:height)
  @name = args[:name] if args.key?(:name)
  @refresh_rate = args[:refresh_rate] if args.key?(:refresh_rate)
  @state = args[:state] if args.key?(:state)
  @width = args[:width] if args.key?(:width)
end