-
Notifications
You must be signed in to change notification settings - Fork 464
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
4,013 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
## | ||
# This code was generated by | ||
# ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __ | ||
# | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/ | ||
# | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \ | ||
# | ||
# Twilio - Preview | ||
# This is the public Twilio REST API. | ||
# | ||
# NOTE: This class is auto generated by OpenAPI Generator. | ||
# https://openapi-generator.tech | ||
# Do not edit the class manually. | ||
# | ||
|
||
module Twilio | ||
module REST | ||
class Preview | ||
class Sync < Version | ||
## | ||
# Initialize the Sync version of Preview | ||
def initialize(domain) | ||
super | ||
@version = 'Sync' | ||
@services = nil | ||
end | ||
|
||
## | ||
# @param [String] sid | ||
# @return [Twilio::REST::Preview::Sync::ServiceContext] if sid was passed. | ||
# @return [Twilio::REST::Preview::Sync::ServiceList] | ||
def services(sid=:unset) | ||
if sid.nil? | ||
raise ArgumentError, 'sid cannot be nil' | ||
end | ||
if sid == :unset | ||
@services ||= ServiceList.new self | ||
else | ||
ServiceContext.new(self, sid) | ||
end | ||
end | ||
## | ||
# Provide a user friendly representation | ||
def to_s | ||
'<Twilio::REST::Preview::Sync>'; | ||
end | ||
end | ||
end | ||
end | ||
end |
Oops, something went wrong.