Class: LWS::CorporateWebsite::SocialPage
- Inherits:
-
Generic::Model
- Object
- Spyke::Base
- Generic::Model
- LWS::CorporateWebsite::SocialPage
- Defined in:
- lib/lws/apps/corporate_website.rb
Overview
The social page class
Instance Attribute Summary collapse
-
#account ⇒ LWS::Auth::Account
The account used for posting the social page.
-
#account_id ⇒ Fixnum
The ID of the account used for posting the social page.
-
#company ⇒ LWS::Auth::Company
The account used for posting the social page.
-
#company_id ⇒ Fixnum
The ID of the account used for posting the social page.
-
#created_at ⇒ String
readonly
The timestamp of when the social page was created.
-
#id ⇒ Fixnum
readonly
The (unique) ID of the social page.
-
#provider ⇒ "facebook", ...
The social page provider.
-
#provider_uid ⇒ String
The UID suplied by the social page provider.
-
#uid_type ⇒ "personal", "page"
The social page UID type.
-
#updated_at ⇒ String
readonly
The timestamp of when the social page was last updated.
Instance Attribute Details
#account ⇒ LWS::Auth::Account
Returns the account used for posting the social page.
184 |
# File 'lib/lws/apps/corporate_website.rb', line 184 belongs_to :account, class_name: "LWS::Auth::Account" |
#account_id ⇒ Fixnum
Returns the ID of the account used for posting the social page.
188 |
# File 'lib/lws/apps/corporate_website.rb', line 188 attribute :account_id |
#company ⇒ LWS::Auth::Company
Returns the account used for posting the social page.
192 |
# File 'lib/lws/apps/corporate_website.rb', line 192 belongs_to :company, class_name: "LWS::Auth::Company" |
#company_id ⇒ Fixnum
Returns the ID of the account used for posting the social page.
196 |
# File 'lib/lws/apps/corporate_website.rb', line 196 attribute :company_id |
#created_at ⇒ String (readonly)
Returns the timestamp of when the social page was created.
212 |
# File 'lib/lws/apps/corporate_website.rb', line 212 attribute :created_at |
#id ⇒ Fixnum (readonly)
Returns the (unique) ID of the social page.
180 |
# File 'lib/lws/apps/corporate_website.rb', line 180 attribute :id |
#provider ⇒ "facebook", ...
Returns the social page provider.
200 |
# File 'lib/lws/apps/corporate_website.rb', line 200 attribute :provider |
#provider_uid ⇒ String
Returns the UID suplied by the social page provider.
204 |
# File 'lib/lws/apps/corporate_website.rb', line 204 attribute :provider_uid |
#uid_type ⇒ "personal", "page"
Returns the social page UID type.
208 |
# File 'lib/lws/apps/corporate_website.rb', line 208 attribute :uid_type |
#updated_at ⇒ String (readonly)
Returns the timestamp of when the social page was last updated.
216 |
# File 'lib/lws/apps/corporate_website.rb', line 216 attribute :updated_at |