class Google::Apis::AdminDirectoryV1::PrinterModel
Printer
manufacturer and model
Attributes
display_name[RW]
Display name. eq. “Brother MFC-8840D” Corresponds to the JSON property `displayName` @return [String]
make_and_model[RW]
Make and model as represented in “make_and_model” field in Printer
object. eq. “brother mfc-8840d” Corresponds to the JSON property `makeAndModel` @return [String]
manufacturer[RW]
Manufacturer. eq. “Brother” Corresponds to the JSON property `manufacturer` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/admin_directory_v1/classes.rb, line 2990 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/admin_directory_v1/classes.rb, line 2995 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @make_and_model = args[:make_and_model] if args.key?(:make_and_model) @manufacturer = args[:manufacturer] if args.key?(:manufacturer) end