Sha256: 3d7a55f1268c6d0a1f2e6e7850d545dff1333c54f6f4c58314e71e36f8d185b2
Contents?: true
Size: 1019 Bytes
Versions: 47
Compression:
Stored size: 1019 Bytes
Contents
## # This code was generated by # \ / _ _ _| _ _ # | (_)\/(_)(_|\/| |(/_ v1.0.0 # / / # # frozen_string_literal: true module Twilio module REST class FrontlineApi < Domain ## # Initialize the FrontlineApi Domain def initialize(twilio) super @base_url = 'https://frontline-api.twilio.com' @host = 'frontline-api.twilio.com' @port = 443 # Versions @v1 = nil end ## # Version v1 of frontline_api def v1 @v1 ||= V1.new self end ## # @param [String] sid The unique string that we created to identify the User # resource. # @return [Twilio::REST::Frontline_api::V1::UserInstance] if sid was passed. # @return [Twilio::REST::Frontline_api::V1::UserList] def users(sid=:unset) self.v1.users(sid) end ## # Provide a user friendly representation def to_s '#<Twilio::REST::FrontlineApi>' end end end end
Version data entries
47 entries across 47 versions & 1 rubygems