Class: Google::Apis::BloggerV2::User

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/blogger_v2/classes.rb,
lib/google/apis/blogger_v2/representations.rb,
lib/google/apis/blogger_v2/representations.rb

Defined Under Namespace

Classes: Blogs, Locale

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ User

Returns a new instance of User.



1141
1142
1143
# File 'lib/google/apis/blogger_v2/classes.rb', line 1141

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#aboutString

Profile summary information. Corresponds to the JSON property about

Returns:

  • (String)


1099
1100
1101
# File 'lib/google/apis/blogger_v2/classes.rb', line 1099

def about
  @about
end

#blogsGoogle::Apis::BloggerV2::User::Blogs

The container of blogs for this user. Corresponds to the JSON property blogs



1104
1105
1106
# File 'lib/google/apis/blogger_v2/classes.rb', line 1104

def blogs
  @blogs
end

#createdString

The timestamp of when this profile was created, in seconds since epoch. Corresponds to the JSON property created

Returns:

  • (String)


1109
1110
1111
# File 'lib/google/apis/blogger_v2/classes.rb', line 1109

def created
  @created
end

#display_nameString

The display name. Corresponds to the JSON property displayName

Returns:

  • (String)


1114
1115
1116
# File 'lib/google/apis/blogger_v2/classes.rb', line 1114

def display_name
  @display_name
end

#idString

The identifier for this User. Corresponds to the JSON property id

Returns:

  • (String)


1119
1120
1121
# File 'lib/google/apis/blogger_v2/classes.rb', line 1119

def id
  @id
end

#kindString

The kind of this entity. Always blogger#user. Corresponds to the JSON property kind

Returns:

  • (String)


1124
1125
1126
# File 'lib/google/apis/blogger_v2/classes.rb', line 1124

def kind
  @kind
end

#localeGoogle::Apis::BloggerV2::User::Locale

This user's locale Corresponds to the JSON property locale



1129
1130
1131
# File 'lib/google/apis/blogger_v2/classes.rb', line 1129

def locale
  @locale
end

The API REST URL to fetch this resource from. Corresponds to the JSON property selfLink

Returns:

  • (String)


1134
1135
1136
# File 'lib/google/apis/blogger_v2/classes.rb', line 1134

def self_link
  @self_link
end

#urlString

The user's profile page. Corresponds to the JSON property url

Returns:

  • (String)


1139
1140
1141
# File 'lib/google/apis/blogger_v2/classes.rb', line 1139

def url
  @url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
# File 'lib/google/apis/blogger_v2/classes.rb', line 1146

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