Class: Google::Apis::AndroidpublisherV3::Testers
- Inherits:
-
Object
- Object
- Google::Apis::AndroidpublisherV3::Testers
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/androidpublisher_v3/classes.rb,
generated/google/apis/androidpublisher_v3/representations.rb,
generated/google/apis/androidpublisher_v3/representations.rb
Instance Attribute Summary collapse
-
#auto_enrolled_android_groups ⇒ Array<String>
Corresponds to the JSON property
autoEnrolledAndroidGroups
. -
#auto_enrolled_google_groups ⇒ Array<String>
Corresponds to the JSON property
autoEnrolledGoogleGroups
. -
#excluded_google_groups ⇒ Array<String>
Corresponds to the JSON property
excludedGoogleGroups
. -
#google_groups ⇒ Array<String>
A list of all Google Groups, as email addresses, that define testers for this track.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Testers
constructor
A new instance of Testers.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Testers
Returns a new instance of Testers.
1986 1987 1988 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1986 def initialize(**args) update!(**args) end |
Instance Attribute Details
#auto_enrolled_android_groups ⇒ Array<String>
Corresponds to the JSON property autoEnrolledAndroidGroups
1968 1969 1970 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1968 def auto_enrolled_android_groups @auto_enrolled_android_groups end |
#auto_enrolled_google_groups ⇒ Array<String>
Corresponds to the JSON property autoEnrolledGoogleGroups
1973 1974 1975 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1973 def auto_enrolled_google_groups @auto_enrolled_google_groups end |
#excluded_google_groups ⇒ Array<String>
Corresponds to the JSON property excludedGoogleGroups
1978 1979 1980 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1978 def excluded_google_groups @excluded_google_groups end |
#google_groups ⇒ Array<String>
A list of all Google Groups, as email addresses, that define testers for this
track.
Corresponds to the JSON property googleGroups
1984 1985 1986 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1984 def google_groups @google_groups end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1991 1992 1993 1994 1995 1996 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1991 def update!(**args) @auto_enrolled_android_groups = args[:auto_enrolled_android_groups] if args.key?(:auto_enrolled_android_groups) @auto_enrolled_google_groups = args[:auto_enrolled_google_groups] if args.key?(:auto_enrolled_google_groups) @excluded_google_groups = args[:excluded_google_groups] if args.key?(:excluded_google_groups) @google_groups = args[:google_groups] if args.key?(:google_groups) end |