Class: Google::Apis::AdminDirectoryV1::MobileDevices
- Inherits:
-
Object
- Object
- Google::Apis::AdminDirectoryV1::MobileDevices
- 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
-
#etag ⇒ String
ETag of the resource.
-
#kind ⇒ String
Kind of resource this is.
-
#mobiledevices ⇒ Array<Google::Apis::AdminDirectoryV1::MobileDevice>
List of Mobile Device objects.
-
#next_page_token ⇒ String
Token used to access next page of this result.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MobileDevices
constructor
A new instance of MobileDevices.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ MobileDevices
Returns a new instance of MobileDevices.
3076 3077 3078 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3076 def initialize(**args) update!(**args) end |
Instance Attribute Details
#etag ⇒ String
ETag of the resource.
Corresponds to the JSON property etag
3059 3060 3061 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3059 def etag @etag end |
#kind ⇒ String
Kind of resource this is.
Corresponds to the JSON property kind
3064 3065 3066 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3064 def kind @kind end |
#mobiledevices ⇒ Array<Google::Apis::AdminDirectoryV1::MobileDevice>
List of Mobile Device objects.
Corresponds to the JSON property mobiledevices
3069 3070 3071 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3069 def mobiledevices @mobiledevices end |
#next_page_token ⇒ String
Token used to access next page of this result.
Corresponds to the JSON property nextPageToken
3074 3075 3076 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3074 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3081 3082 3083 3084 3085 3086 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3081 def update!(**args) @etag = args[:etag] if args.key?(:etag) @kind = args[:kind] if args.key?(:kind) @mobiledevices = args[:mobiledevices] if args.key?(:mobiledevices) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |