Class: Twilio::REST::Numbers::V2::RegulatoryComplianceList::BundleContext::BundleCopyInstance

Inherits:
InstanceResource
  • Object
show all
Defined in:
lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/bundle_copy.rb

Overview

PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.

Instance Method Summary collapse

Constructor Details

#initialize(version, payload, bundle_sid: nil) ⇒ BundleCopyInstance

Initialize the BundleCopyInstance



93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/bundle_copy.rb', line 93

def initialize(version, payload, bundle_sid: nil)
  super(version)

  # Marshaled Properties
  @properties = {
      'sid' => payload['sid'],
      'account_sid' => payload['account_sid'],
      'regulation_sid' => payload['regulation_sid'],
      'friendly_name' => payload['friendly_name'],
      'status' => payload['status'],
      'valid_until' => Twilio.deserialize_iso8601_datetime(payload['valid_until']),
      'email' => payload['email'],
      'status_callback' => payload['status_callback'],
      'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']),
      'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']),
  }
end

Instance Method Details

#account_sidString



119
120
121
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/bundle_copy.rb', line 119

def 
  @properties['account_sid']
end

#date_createdTime



161
162
163
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/bundle_copy.rb', line 161

def date_created
  @properties['date_created']
end

#date_updatedTime



167
168
169
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/bundle_copy.rb', line 167

def date_updated
  @properties['date_updated']
end

#emailString



149
150
151
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/bundle_copy.rb', line 149

def email
  @properties['email']
end

#friendly_nameString



131
132
133
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/bundle_copy.rb', line 131

def friendly_name
  @properties['friendly_name']
end

#inspectObject

Provide a detailed, user friendly representation



179
180
181
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/bundle_copy.rb', line 179

def inspect
  "<Twilio.Numbers.V2.BundleCopyInstance>"
end

#regulation_sidString



125
126
127
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/bundle_copy.rb', line 125

def regulation_sid
  @properties['regulation_sid']
end

#sidString



113
114
115
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/bundle_copy.rb', line 113

def sid
  @properties['sid']
end

#statusbundle_copy.Status



137
138
139
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/bundle_copy.rb', line 137

def status
  @properties['status']
end

#status_callbackString



155
156
157
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/bundle_copy.rb', line 155

def status_callback
  @properties['status_callback']
end

#to_sObject

Provide a user friendly representation



173
174
175
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/bundle_copy.rb', line 173

def to_s
  "<Twilio.Numbers.V2.BundleCopyInstance>"
end

#valid_untilTime



143
144
145
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/bundle_copy.rb', line 143

def valid_until
  @properties['valid_until']
end