Class: Google::Apis::BloggerV3::PostPerUserInfo
- Inherits:
-
Object
- Object
- Google::Apis::BloggerV3::PostPerUserInfo
- 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
Instance Attribute Summary collapse
-
#blog_id ⇒ String
ID of the Blog that the post resource belongs to.
-
#has_edit_access ⇒ Boolean
(also: #has_edit_access?)
True if the user has Author level access to the post.
-
#kind ⇒ String
The kind of this entity.
-
#post_id ⇒ String
ID of the Post resource.
-
#user_id ⇒ String
ID of the User.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PostPerUserInfo
constructor
A new instance of PostPerUserInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PostPerUserInfo
Returns a new instance of PostPerUserInfo.
1178 1179 1180 |
# File 'lib/google/apis/blogger_v3/classes.rb', line 1178 def initialize(**args) update!(**args) end |
Instance Attribute Details
#blog_id ⇒ String
ID of the Blog that the post resource belongs to.
Corresponds to the JSON property blogId
1155 1156 1157 |
# File 'lib/google/apis/blogger_v3/classes.rb', line 1155 def blog_id @blog_id end |
#has_edit_access ⇒ Boolean Also known as: has_edit_access?
True if the user has Author level access to the post.
Corresponds to the JSON property hasEditAccess
1160 1161 1162 |
# File 'lib/google/apis/blogger_v3/classes.rb', line 1160 def has_edit_access @has_edit_access end |
#kind ⇒ String
The kind of this entity. Always blogger#postPerUserInfo.
Corresponds to the JSON property kind
1166 1167 1168 |
# File 'lib/google/apis/blogger_v3/classes.rb', line 1166 def kind @kind end |
#post_id ⇒ String
ID of the Post resource.
Corresponds to the JSON property postId
1171 1172 1173 |
# File 'lib/google/apis/blogger_v3/classes.rb', line 1171 def post_id @post_id end |
#user_id ⇒ String
ID of the User.
Corresponds to the JSON property userId
1176 1177 1178 |
# File 'lib/google/apis/blogger_v3/classes.rb', line 1176 def user_id @user_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1183 1184 1185 1186 1187 1188 1189 |
# File 'lib/google/apis/blogger_v3/classes.rb', line 1183 def update!(**args) @blog_id = args[:blog_id] if args.key?(:blog_id) @has_edit_access = args[:has_edit_access] if args.key?(:has_edit_access) @kind = args[:kind] if args.key?(:kind) @post_id = args[:post_id] if args.key?(:post_id) @user_id = args[:user_id] if args.key?(:user_id) end |