Class: Google::Apis::BloggerV3::User
- Inherits:
-
Object
- Object
- Google::Apis::BloggerV3::User
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/blogger_v3/classes.rb,
generated/google/apis/blogger_v3/representations.rb,
generated/google/apis/blogger_v3/representations.rb
Defined Under Namespace
Instance Attribute Summary collapse
-
#about ⇒ String
Profile summary information.
-
#blogs ⇒ Google::Apis::BloggerV3::User::Blogs
The container of blogs for this user.
-
#created ⇒ String
The timestamp of when this profile was created, in seconds since epoch.
-
#display_name ⇒ String
The display name.
-
#id ⇒ String
The identifier for this User.
-
#kind ⇒ String
The kind of this entity.
-
#locale ⇒ Google::Apis::BloggerV3::User::Locale
This user's locale Corresponds to the JSON property
locale
. -
#self_link ⇒ String
The API REST URL to fetch this resource from.
-
#url ⇒ String
The user's profile page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ User
constructor
A new instance of User.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ User
Returns a new instance of User.
1291 1292 1293 |
# File 'generated/google/apis/blogger_v3/classes.rb', line 1291 def initialize(**args) update!(**args) end |
Instance Attribute Details
#about ⇒ String
Profile summary information.
Corresponds to the JSON property about
1249 1250 1251 |
# File 'generated/google/apis/blogger_v3/classes.rb', line 1249 def about @about end |
#blogs ⇒ Google::Apis::BloggerV3::User::Blogs
The container of blogs for this user.
Corresponds to the JSON property blogs
1254 1255 1256 |
# File 'generated/google/apis/blogger_v3/classes.rb', line 1254 def blogs @blogs end |
#created ⇒ String
The timestamp of when this profile was created, in seconds since epoch.
Corresponds to the JSON property created
1259 1260 1261 |
# File 'generated/google/apis/blogger_v3/classes.rb', line 1259 def created @created end |
#display_name ⇒ String
The display name.
Corresponds to the JSON property displayName
1264 1265 1266 |
# File 'generated/google/apis/blogger_v3/classes.rb', line 1264 def display_name @display_name end |
#id ⇒ String
The identifier for this User.
Corresponds to the JSON property id
1269 1270 1271 |
# File 'generated/google/apis/blogger_v3/classes.rb', line 1269 def id @id end |
#kind ⇒ String
The kind of this entity. Always blogger#user.
Corresponds to the JSON property kind
1274 1275 1276 |
# File 'generated/google/apis/blogger_v3/classes.rb', line 1274 def kind @kind end |
#locale ⇒ Google::Apis::BloggerV3::User::Locale
This user's locale
Corresponds to the JSON property locale
1279 1280 1281 |
# File 'generated/google/apis/blogger_v3/classes.rb', line 1279 def locale @locale end |
#self_link ⇒ String
The API REST URL to fetch this resource from.
Corresponds to the JSON property selfLink
1284 1285 1286 |
# File 'generated/google/apis/blogger_v3/classes.rb', line 1284 def self_link @self_link end |
#url ⇒ String
The user's profile page.
Corresponds to the JSON property url
1289 1290 1291 |
# File 'generated/google/apis/blogger_v3/classes.rb', line 1289 def url @url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 |
# File 'generated/google/apis/blogger_v3/classes.rb', line 1296 def update!(**args) @about = args[:about] if args.key?(:about) @blogs = args[:blogs] if args.key?(:blogs) @created = args[:created] if args.key?(:created) @display_name = args[:display_name] if args.key?(:display_name) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @locale = args[:locale] if args.key?(:locale) @self_link = args[:self_link] if args.key?(:self_link) @url = args[:url] if args.key?(:url) end |