Class: Twilio::REST::Content::V1::ContentAndApprovalsInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Content::V1::ContentAndApprovalsInstance
- Defined in:
- lib/twilio-ruby/rest/content/v1/content_and_approvals.rb
Instance Method Summary collapse
-
#account_sid ⇒ String
The SID of the [Account](www.twilio.com/docs/usage/api/account) that created Content resource.
-
#approval_requests ⇒ Hash
The submitted information and approval request status of the Content resource.
-
#date_created ⇒ Time
The date and time in GMT that the resource was created specified in [RFC 2822](www.ietf.org/rfc/rfc2822.txt) format.
-
#date_updated ⇒ Time
The date and time in GMT that the resource was last updated specified in [RFC 2822](www.ietf.org/rfc/rfc2822.txt) format.
-
#friendly_name ⇒ String
A string name used to describe the Content resource.
-
#initialize(version, payload) ⇒ ContentAndApprovalsInstance
constructor
Initialize the ContentAndApprovalsInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#language ⇒ String
Two-letter (ISO 639-1) language code (e.g., en) identifying the language the Content resource is in.
-
#sid ⇒ String
The unique string that that we created to identify the Content resource.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#types ⇒ Hash
The [Content types](www.twilio.com/docs/content-api/content-types-overview) (e.g. twilio/text) for this Content resource.
-
#variables ⇒ Hash
Defines the default placeholder values for variables included in the Content resource.
Constructor Details
#initialize(version, payload) ⇒ ContentAndApprovalsInstance
Initialize the ContentAndApprovalsInstance
167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 |
# File 'lib/twilio-ruby/rest/content/v1/content_and_approvals.rb', line 167 def initialize(version, payload ) super(version) # Marshaled Properties @properties = { 'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']), 'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']), 'sid' => payload['sid'], 'account_sid' => payload['account_sid'], 'friendly_name' => payload['friendly_name'], 'language' => payload['language'], 'variables' => payload['variables'], 'types' => payload['types'], 'approval_requests' => payload['approval_requests'], } end |
Instance Method Details
#account_sid ⇒ String
Returns The SID of the [Account](www.twilio.com/docs/usage/api/account) that created Content resource.
205 206 207 |
# File 'lib/twilio-ruby/rest/content/v1/content_and_approvals.rb', line 205 def account_sid @properties['account_sid'] end |
#approval_requests ⇒ Hash
Returns The submitted information and approval request status of the Content resource.
235 236 237 |
# File 'lib/twilio-ruby/rest/content/v1/content_and_approvals.rb', line 235 def approval_requests @properties['approval_requests'] end |
#date_created ⇒ Time
Returns The date and time in GMT that the resource was created specified in [RFC 2822](www.ietf.org/rfc/rfc2822.txt) format.
187 188 189 |
# File 'lib/twilio-ruby/rest/content/v1/content_and_approvals.rb', line 187 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
Returns The date and time in GMT that the resource was last updated specified in [RFC 2822](www.ietf.org/rfc/rfc2822.txt) format.
193 194 195 |
# File 'lib/twilio-ruby/rest/content/v1/content_and_approvals.rb', line 193 def date_updated @properties['date_updated'] end |
#friendly_name ⇒ String
Returns A string name used to describe the Content resource. Not visible to the end recipient.
211 212 213 |
# File 'lib/twilio-ruby/rest/content/v1/content_and_approvals.rb', line 211 def friendly_name @properties['friendly_name'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
247 248 249 |
# File 'lib/twilio-ruby/rest/content/v1/content_and_approvals.rb', line 247 def inspect "<Twilio.Content.V1.ContentAndApprovalsInstance>" end |
#language ⇒ String
Returns Two-letter (ISO 639-1) language code (e.g., en) identifying the language the Content resource is in.
217 218 219 |
# File 'lib/twilio-ruby/rest/content/v1/content_and_approvals.rb', line 217 def language @properties['language'] end |
#sid ⇒ String
Returns The unique string that that we created to identify the Content resource.
199 200 201 |
# File 'lib/twilio-ruby/rest/content/v1/content_and_approvals.rb', line 199 def sid @properties['sid'] end |
#to_s ⇒ Object
Provide a user friendly representation
241 242 243 |
# File 'lib/twilio-ruby/rest/content/v1/content_and_approvals.rb', line 241 def to_s "<Twilio.Content.V1.ContentAndApprovalsInstance>" end |
#types ⇒ Hash
Returns The [Content types](www.twilio.com/docs/content-api/content-types-overview) (e.g. twilio/text) for this Content resource.
229 230 231 |
# File 'lib/twilio-ruby/rest/content/v1/content_and_approvals.rb', line 229 def types @properties['types'] end |
#variables ⇒ Hash
Returns Defines the default placeholder values for variables included in the Content resource. e.g. "Customer_Name".
223 224 225 |
# File 'lib/twilio-ruby/rest/content/v1/content_and_approvals.rb', line 223 def variables @properties['variables'] end |