Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1PrintJob

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/chromemanagement_v1/classes.rb,
lib/google/apis/chromemanagement_v1/representations.rb,
lib/google/apis/chromemanagement_v1/representations.rb

Overview

Represents a request to print a document that has been submitted to a printer.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleChromeManagementV1PrintJob

Returns a new instance of GoogleChromeManagementV1PrintJob.



2687
2688
2689
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2687

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

Instance Attribute Details

#color_modeString

Color mode. Corresponds to the JSON property colorMode

Returns:

  • (String)


2625
2626
2627
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2625

def color_mode
  @color_mode
end

#complete_timeString

Print job completion timestamp. Corresponds to the JSON property completeTime

Returns:

  • (String)


2630
2631
2632
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2630

def complete_time
  @complete_time
end

#copy_countFixnum

Number of copies. Corresponds to the JSON property copyCount

Returns:

  • (Fixnum)


2635
2636
2637
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2635

def copy_count
  @copy_count
end

#create_timeString

Print job creation timestamp. Corresponds to the JSON property createTime

Returns:

  • (String)


2640
2641
2642
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2640

def create_time
  @create_time
end

#document_page_countFixnum

Number of pages in the document. Corresponds to the JSON property documentPageCount

Returns:

  • (Fixnum)


2645
2646
2647
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2645

def document_page_count
  @document_page_count
end

#duplex_modeString

Duplex mode. Corresponds to the JSON property duplexMode

Returns:

  • (String)


2650
2651
2652
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2650

def duplex_mode
  @duplex_mode
end

#idString

Unique ID of the print job. Corresponds to the JSON property id

Returns:

  • (String)


2655
2656
2657
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2655

def id
  @id
end

#printerString

Name of the printer used for printing. Corresponds to the JSON property printer

Returns:

  • (String)


2660
2661
2662
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2660

def printer
  @printer
end

#printer_idString

API ID of the printer used for printing. Corresponds to the JSON property printerId

Returns:

  • (String)


2665
2666
2667
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2665

def printer_id
  @printer_id
end

#stateString

The final state of the job. Corresponds to the JSON property state

Returns:

  • (String)


2670
2671
2672
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2670

def state
  @state
end

#titleString

The title of the document. Corresponds to the JSON property title

Returns:

  • (String)


2675
2676
2677
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2675

def title
  @title
end

#user_emailString

The primary e-mail address of the user who submitted the print job. Corresponds to the JSON property userEmail

Returns:

  • (String)


2680
2681
2682
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2680

def user_email
  @user_email
end

#user_idString

The unique Directory API ID of the user who submitted the print job. Corresponds to the JSON property userId

Returns:

  • (String)


2685
2686
2687
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2685

def user_id
  @user_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2692

def update!(**args)
  @color_mode = args[:color_mode] if args.key?(:color_mode)
  @complete_time = args[:complete_time] if args.key?(:complete_time)
  @copy_count = args[:copy_count] if args.key?(:copy_count)
  @create_time = args[:create_time] if args.key?(:create_time)
  @document_page_count = args[:document_page_count] if args.key?(:document_page_count)
  @duplex_mode = args[:duplex_mode] if args.key?(:duplex_mode)
  @id = args[:id] if args.key?(:id)
  @printer = args[:printer] if args.key?(:printer)
  @printer_id = args[:printer_id] if args.key?(:printer_id)
  @state = args[:state] if args.key?(:state)
  @title = args[:title] if args.key?(:title)
  @user_email = args[:user_email] if args.key?(:user_email)
  @user_id = args[:user_id] if args.key?(:user_id)
end