Class: Google::Apis::BloggerV3::User
- Inherits:
-
Object
- Object
- Google::Apis::BloggerV3::User
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/blogger_v3/classes.rb,
lib/google/apis/blogger_v3/representations.rb,
lib/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.
1303 1304 1305 |
# File 'lib/google/apis/blogger_v3/classes.rb', line 1303 def initialize(**args) update!(**args) end |
Instance Attribute Details
#about ⇒ String
Profile summary information.
Corresponds to the JSON property about
1261 1262 1263 |
# File 'lib/google/apis/blogger_v3/classes.rb', line 1261 def about @about end |
#blogs ⇒ Google::Apis::BloggerV3::User::Blogs
The container of blogs for this user.
Corresponds to the JSON property blogs
1266 1267 1268 |
# File 'lib/google/apis/blogger_v3/classes.rb', line 1266 def blogs @blogs end |
#created ⇒ String
The timestamp of when this profile was created, in seconds since epoch.
Corresponds to the JSON property created
1271 1272 1273 |
# File 'lib/google/apis/blogger_v3/classes.rb', line 1271 def created @created end |
#display_name ⇒ String
The display name.
Corresponds to the JSON property displayName
1276 1277 1278 |
# File 'lib/google/apis/blogger_v3/classes.rb', line 1276 def display_name @display_name end |
#id ⇒ String
The identifier for this User.
Corresponds to the JSON property id
1281 1282 1283 |
# File 'lib/google/apis/blogger_v3/classes.rb', line 1281 def id @id end |
#kind ⇒ String
The kind of this entity. Always blogger#user.
Corresponds to the JSON property kind
1286 1287 1288 |
# File 'lib/google/apis/blogger_v3/classes.rb', line 1286 def kind @kind end |
#locale ⇒ Google::Apis::BloggerV3::User::Locale
This user's locale
Corresponds to the JSON property locale
1291 1292 1293 |
# File 'lib/google/apis/blogger_v3/classes.rb', line 1291 def locale @locale end |
#self_link ⇒ String
The API REST URL to fetch this resource from.
Corresponds to the JSON property selfLink
1296 1297 1298 |
# File 'lib/google/apis/blogger_v3/classes.rb', line 1296 def self_link @self_link end |
#url ⇒ String
The user's profile page.
Corresponds to the JSON property url
1301 1302 1303 |
# File 'lib/google/apis/blogger_v3/classes.rb', line 1301 def url @url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 |
# File 'lib/google/apis/blogger_v3/classes.rb', line 1308 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 |