Class: Google::Apis::AdminDirectoryV1::ListPrintServersResponse
- Inherits:
-
Object
- Object
- Google::Apis::AdminDirectoryV1::ListPrintServersResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/admin_directory_v1/classes.rb,
lib/google/apis/admin_directory_v1/representations.rb,
lib/google/apis/admin_directory_v1/representations.rb
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token that can be sent as
page_token
in a request to retrieve the next page. -
#print_servers ⇒ Array<Google::Apis::AdminDirectoryV1::PrintServer>
List of print servers.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListPrintServersResponse
constructor
A new instance of ListPrintServersResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListPrintServersResponse
Returns a new instance of ListPrintServersResponse.
2751 2752 2753 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 2751 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
A token that can be sent as page_token
in a request to retrieve the next
page. If this field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
2744 2745 2746 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 2744 def next_page_token @next_page_token end |
#print_servers ⇒ Array<Google::Apis::AdminDirectoryV1::PrintServer>
List of print servers.
Corresponds to the JSON property printServers
2749 2750 2751 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 2749 def print_servers @print_servers end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2756 2757 2758 2759 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 2756 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @print_servers = args[:print_servers] if args.key?(:print_servers) end |