Class: Twilio::REST::Sync::V1::ServiceContext::DocumentContext::DocumentPermissionInstance

Inherits:
InstanceResource
  • Object
show all
Defined in:
lib/twilio-ruby/rest/sync/v1/service/document/document_permission.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, service_sid: nil, document_sid: nil, identity: nil) ⇒ DocumentPermissionInstance

Initialize the DocumentPermissionInstance

Parameters:

  • version (Version)

    Version that contains the resource

  • payload (Hash)

    payload that contains response from Twilio

  • service_sid (String) (defaults to: nil)

    The SID of the [Sync Service](www.twilio.com/docs/sync/api/service) the resource is associated with.

  • document_sid (String) (defaults to: nil)

    The SID of the Sync Document to which the Document Permission applies.

  • identity (String) (defaults to: nil)

    The application-defined string that uniquely identifies the User’s Document Permission resource to fetch.



265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
# File 'lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb', line 265

def initialize(version, payload, service_sid: nil, document_sid: nil, identity: nil)
  super(version)

  # Marshaled Properties
  @properties = {
      'account_sid' => payload['account_sid'],
      'service_sid' => payload['service_sid'],
      'document_sid' => payload['document_sid'],
      'identity' => payload['identity'],
      'read' => payload['read'],
      'write' => payload['write'],
      'manage' => payload['manage'],
      'url' => payload['url'],
  }

  # Context
  @instance_context = nil
  @params = {
      'service_sid' => service_sid,
      'document_sid' => document_sid,
      'identity' => identity || @properties['identity'],
  }
end

Instance Method Details

#account_sidString

Returns The SID of the Account that created the resource.

Returns:

  • (String)

    The SID of the Account that created the resource



307
308
309
# File 'lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb', line 307

def 
  @properties['account_sid']
end

#contextDocumentPermissionContext

Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context

Returns:



293
294
295
296
297
298
299
300
301
302
303
# File 'lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb', line 293

def context
  unless @instance_context
    @instance_context = DocumentPermissionContext.new(
        @version,
        @params['service_sid'],
        @params['document_sid'],
        @params['identity'],
    )
  end
  @instance_context
end

#deleteBoolean

Deletes the DocumentPermissionInstance

Returns:

  • (Boolean)

    true if delete succeeds, false otherwise



363
364
365
# File 'lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb', line 363

def delete
  context.delete
end

#document_sidString

Returns The Sync Document SID.

Returns:

  • (String)

    The Sync Document SID



319
320
321
# File 'lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb', line 319

def document_sid
  @properties['document_sid']
end

#fetchDocumentPermissionInstance

Fetch a DocumentPermissionInstance

Returns:



356
357
358
# File 'lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb', line 356

def fetch
  context.fetch
end

#identityString

Returns The identity of the user to whom the Sync Document Permission applies.

Returns:

  • (String)

    The identity of the user to whom the Sync Document Permission applies



325
326
327
# File 'lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb', line 325

def identity
  @properties['identity']
end

#inspectObject

Provide a detailed, user friendly representation



386
387
388
389
# File 'lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb', line 386

def inspect
  values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ")
  "<Twilio.Sync.V1.DocumentPermissionInstance #{values}>"
end

#manageBoolean

Returns Manage access.

Returns:

  • (Boolean)

    Manage access



343
344
345
# File 'lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb', line 343

def manage
  @properties['manage']
end

#readBoolean

Returns Read access.

Returns:

  • (Boolean)

    Read access



331
332
333
# File 'lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb', line 331

def read
  @properties['read']
end

#service_sidString

Returns The SID of the Sync Service that the resource is associated with.

Returns:

  • (String)

    The SID of the Sync Service that the resource is associated with



313
314
315
# File 'lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb', line 313

def service_sid
  @properties['service_sid']
end

#to_sObject

Provide a user friendly representation



379
380
381
382
# File 'lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb', line 379

def to_s
  values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
  "<Twilio.Sync.V1.DocumentPermissionInstance #{values}>"
end

#update(read: nil, write: nil, manage: nil) ⇒ DocumentPermissionInstance

Update the DocumentPermissionInstance

Parameters:

  • read (Boolean) (defaults to: nil)

    Whether the identity can read the Sync Document.

  • write (Boolean) (defaults to: nil)

    Whether the identity can update the Sync Document.

  • manage (Boolean) (defaults to: nil)

    Whether the identity can delete the Sync Document.

Returns:



373
374
375
# File 'lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb', line 373

def update(read: nil, write: nil, manage: nil)
  context.update(read: read, write: write, manage: manage, )
end

#urlString

Returns The absolute URL of the Sync Document Permission resource.

Returns:

  • (String)

    The absolute URL of the Sync Document Permission resource



349
350
351
# File 'lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb', line 349

def url
  @properties['url']
end

#writeBoolean

Returns Write access.

Returns:

  • (Boolean)

    Write access



337
338
339
# File 'lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb', line 337

def write
  @properties['write']
end