Class: Twilio::REST::Accounts::V1::BulkConsentsList
- Inherits:
-
ListResource
- Object
- ListResource
- Twilio::REST::Accounts::V1::BulkConsentsList
- Defined in:
- lib/twilio-ruby/rest/accounts/v1/bulk_consents.rb
Instance Method Summary collapse
-
#create(items: nil) ⇒ BulkConsentsInstance
Create the BulkConsentsInstance.
-
#create_with_metadata(items: nil) ⇒ BulkConsentsInstance
Create the BulkConsentsInstanceMetadata.
-
#initialize(version) ⇒ BulkConsentsList
constructor
Initialize the BulkConsentsList.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version) ⇒ BulkConsentsList
Initialize the BulkConsentsList
26 27 28 29 30 31 32 33 |
# File 'lib/twilio-ruby/rest/accounts/v1/bulk_consents.rb', line 26 def initialize(version) super(version) # Path Solution @solution = { } @uri = "/Consents/Bulk" end |
Instance Method Details
#create(items: nil) ⇒ BulkConsentsInstance
Create the BulkConsentsInstance
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
# File 'lib/twilio-ruby/rest/accounts/v1/bulk_consents.rb', line 38 def create( items: nil ) data = Twilio::Values.of({ 'Items' => Twilio.serialize_list(items) { |e| Twilio.serialize_object(e) }, }) headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) payload = @version.create('POST', @uri, data: data, headers: headers) BulkConsentsInstance.new( @version, payload, ) end |
#create_with_metadata(items: nil) ⇒ BulkConsentsInstance
Create the BulkConsentsInstanceMetadata
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 |
# File 'lib/twilio-ruby/rest/accounts/v1/bulk_consents.rb', line 63 def ( items: nil ) data = Twilio::Values.of({ 'Items' => Twilio.serialize_list(items) { |e| Twilio.serialize_object(e) }, }) headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) response = @version.('POST', @uri, data: data, headers: headers) = BulkConsentsInstance.new( @version, response.body, ) BulkConsentsInstanceMetadata.new( @version, , response.headers, response.status_code ) end |
#to_s ⇒ Object
Provide a user friendly representation
94 95 96 |
# File 'lib/twilio-ruby/rest/accounts/v1/bulk_consents.rb', line 94 def to_s '#<Twilio.Accounts.V1.BulkConsentsList>' end |