Class: Google::Apis::PlusDomainsV1::Circle
- Inherits:
-
Object
- Object
- Google::Apis::PlusDomainsV1::Circle
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/plus_domains_v1/classes.rb,
generated/google/apis/plus_domains_v1/representations.rb,
generated/google/apis/plus_domains_v1/representations.rb
Defined Under Namespace
Classes: People
Instance Attribute Summary collapse
-
#description ⇒ String
The description of this circle.
-
#display_name ⇒ String
The circle name.
-
#etag ⇒ String
ETag of this response for caching purposes.
-
#id ⇒ String
The ID of the circle.
-
#kind ⇒ String
Identifies this resource as a circle.
-
#people ⇒ Google::Apis::PlusDomainsV1::Circle::People
The people in this circle.
-
#self_link ⇒ String
Link to this circle resource Corresponds to the JSON property
selfLink
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Circle
constructor
A new instance of Circle.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Circle
Returns a new instance of Circle
1189 1190 1191 |
# File 'generated/google/apis/plus_domains_v1/classes.rb', line 1189 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
The description of this circle.
Corresponds to the JSON property description
1157 1158 1159 |
# File 'generated/google/apis/plus_domains_v1/classes.rb', line 1157 def description @description end |
#display_name ⇒ String
The circle name.
Corresponds to the JSON property displayName
1162 1163 1164 |
# File 'generated/google/apis/plus_domains_v1/classes.rb', line 1162 def display_name @display_name end |
#etag ⇒ String
ETag of this response for caching purposes.
Corresponds to the JSON property etag
1167 1168 1169 |
# File 'generated/google/apis/plus_domains_v1/classes.rb', line 1167 def etag @etag end |
#id ⇒ String
The ID of the circle.
Corresponds to the JSON property id
1172 1173 1174 |
# File 'generated/google/apis/plus_domains_v1/classes.rb', line 1172 def id @id end |
#kind ⇒ String
Identifies this resource as a circle. Value: "plus#circle".
Corresponds to the JSON property kind
1177 1178 1179 |
# File 'generated/google/apis/plus_domains_v1/classes.rb', line 1177 def kind @kind end |
#people ⇒ Google::Apis::PlusDomainsV1::Circle::People
The people in this circle.
Corresponds to the JSON property people
1182 1183 1184 |
# File 'generated/google/apis/plus_domains_v1/classes.rb', line 1182 def people @people end |
#self_link ⇒ String
Link to this circle resource
Corresponds to the JSON property selfLink
1187 1188 1189 |
# File 'generated/google/apis/plus_domains_v1/classes.rb', line 1187 def self_link @self_link end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1194 1195 1196 1197 1198 1199 1200 1201 1202 |
# File 'generated/google/apis/plus_domains_v1/classes.rb', line 1194 def update!(**args) @description = args[:description] if args.key?(:description) @display_name = args[:display_name] if args.key?(:display_name) @etag = args[:etag] if args.key?(:etag) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @people = args[:people] if args.key?(:people) @self_link = args[:self_link] if args.key?(:self_link) end |