lib/twilio-ruby/rest/chat/v2/service/channel/invite.rb in twilio-ruby-5.9.0 vs lib/twilio-ruby/rest/chat/v2/service/channel/invite.rb in twilio-ruby-5.10.0

- old
+ new

@@ -14,12 +14,15 @@ class ChannelContext < InstanceContext class InviteList < ListResource ## # Initialize the InviteList # @param [Version] version Version that contains the resource - # @param [String] service_sid The service_sid - # @param [String] channel_sid The channel_sid + # @param [String] service_sid The unique id of the + # [Service](https://www.twilio.com/docs/api/chat/rest/services) this member + # belongs to. + # @param [String] channel_sid The unique id of the + # [Channel](https://www.twilio.com/docs/api/chat/rest/channels) for this member. # @return [InviteList] InviteList def initialize(version, service_sid: nil, channel_sid: nil) super(version) # Path Solution @@ -28,12 +31,17 @@ end ## # Retrieve a single page of InviteInstance records from the API. # Request is executed immediately. - # @param [String] identity The identity - # @param [String] role_sid The role_sid + # @param [String] identity A unique string identifier for this + # [User](https://www.twilio.com/docs/api/chat/rest/users) in this + # [Service](https://www.twilio.com/docs/api/chat/rest/services). See the [access + # tokens](https://www.twilio.com/docs/api/chat/guides/create-tokens) docs for more + # details. + # @param [String] role_sid The + # [Role](https://www.twilio.com/docs/api/chat/rest/roles) assigned to this member. # @return [InviteInstance] Newly created InviteInstance def create(identity: nil, role_sid: :unset) data = Twilio::Values.of({'Identity' => identity, 'RoleSid' => role_sid, }) payload = @version.create( @@ -52,11 +60,15 @@ ## # Lists InviteInstance records from the API as a list. # Unlike stream(), this operation is eager and will load `limit` records into # memory before returning. - # @param [String] identity The identity + # @param [String] identity A unique string identifier for this + # [User](https://www.twilio.com/docs/api/chat/rest/users) in this + # [Service](https://www.twilio.com/docs/api/chat/rest/services). See the [access + # tokens](https://www.twilio.com/docs/api/chat/guides/create-tokens) docs for more + # details. # @param [Integer] limit Upper limit for the number of records to return. stream() # guarantees to never return more than limit. Default is no limit # @param [Integer] page_size Number of records to fetch per request, when # not set will use the default value of 50 records. If no page_size is defined # but a limit is defined, stream() will attempt to read the limit with the most @@ -68,11 +80,15 @@ ## # Streams InviteInstance records from the API as an Enumerable. # This operation lazily loads records as efficiently as possible until the limit # is reached. - # @param [String] identity The identity + # @param [String] identity A unique string identifier for this + # [User](https://www.twilio.com/docs/api/chat/rest/users) in this + # [Service](https://www.twilio.com/docs/api/chat/rest/services). See the [access + # tokens](https://www.twilio.com/docs/api/chat/guides/create-tokens) docs for more + # details. # @param [Integer] limit Upper limit for the number of records to return. stream() # guarantees to never return more than limit. Default is no limit. # @param [Integer] page_size Number of records to fetch per request, when # not set will use the default value of 50 records. If no page_size is defined # but a limit is defined, stream() will attempt to read the limit with the most @@ -101,11 +117,15 @@ end ## # Retrieve a single page of InviteInstance records from the API. # Request is executed immediately. - # @param [String] identity The identity + # @param [String] identity A unique string identifier for this + # [User](https://www.twilio.com/docs/api/chat/rest/users) in this + # [Service](https://www.twilio.com/docs/api/chat/rest/services). See the [access + # tokens](https://www.twilio.com/docs/api/chat/guides/create-tokens) docs for more + # details. # @param [String] page_token PageToken provided by the API # @param [Integer] page_number Page Number, this value is simply for client state # @param [Integer] page_size Number of records to return, defaults to 50 # @return [Page] Page of InviteInstance def page(identity: :unset, page_token: :unset, page_number: :unset, page_size: :unset) @@ -232,12 +252,15 @@ class InviteInstance < InstanceResource ## # Initialize the InviteInstance # @param [Version] version Version that contains the resource # @param [Hash] payload payload that contains response from Twilio - # @param [String] service_sid The service_sid - # @param [String] channel_sid The channel_sid + # @param [String] service_sid The unique id of the + # [Service](https://www.twilio.com/docs/api/chat/rest/services) this member + # belongs to. + # @param [String] channel_sid The unique id of the + # [Channel](https://www.twilio.com/docs/api/chat/rest/channels) for this member. # @param [String] sid The sid # @return [InviteInstance] InviteInstance def initialize(version, payload, service_sid: nil, channel_sid: nil, sid: nil) super(version) @@ -279,53 +302,53 @@ end @instance_context end ## - # @return [String] The sid + # @return [String] A 34 character string that uniquely identifies this resource. def sid @properties['sid'] end ## - # @return [String] The account_sid + # @return [String] The unique id of the Account responsible for this member. def account_sid @properties['account_sid'] end ## - # @return [String] The channel_sid + # @return [String] The unique id of the Channel for this member. def channel_sid @properties['channel_sid'] end ## - # @return [String] The service_sid + # @return [String] The unique id of the Service this member belongs to. def service_sid @properties['service_sid'] end ## - # @return [String] The identity + # @return [String] A unique string identifier for this User in this Service. def identity @properties['identity'] end ## - # @return [Time] The date_created + # @return [Time] The date that this resource was created. def date_created @properties['date_created'] end ## - # @return [Time] The date_updated + # @return [Time] The date that this resource was last updated. def date_updated @properties['date_updated'] end ## - # @return [String] The role_sid + # @return [String] The Role assigned to this member. def role_sid @properties['role_sid'] end ## @@ -333,10 +356,10 @@ def created_by @properties['created_by'] end ## - # @return [String] The url + # @return [String] An absolute URL for this member. def url @properties['url'] end ## \ No newline at end of file