Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DEVX-7540: Applications API Updates #294

Merged
merged 2 commits into from
Nov 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions lib/vonage/applications.rb
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ class Applications < Namespace
#
# response = client.applications.create(params)
#
# @param [Hash] params
#
# @option params [required, String] :name
# Application name.
#
Expand All @@ -44,7 +46,9 @@ class Applications < Namespace
# This contains the configuration for each product.
# This replaces the application `type` from version 1 of the Application API.
#
# @param [Hash] params
# @option params [Hash] :privacy
# - **:improve_ai** (Boolean) If set to `true``, Vonage may store and use your content and data for the improvement
# of Vonage's AI based services and technologies.
#
# @return [Response]
#
Expand Down Expand Up @@ -73,7 +77,7 @@ def create(params)
# Set this to `false` to not auto-advance through all the pages in the record
# and collect all the data. The default is `true`.
# @param [Hash] params
#
#
# @return [ListResponse]
#
# @see https://developer.nexmo.com/api/application.v2#listApplication
Expand Down Expand Up @@ -109,6 +113,9 @@ def get(id)
# @example
# response = client.applications.update(id, answer_method: 'POST')
#
# @param [String] id
# @param [Hash] params
#
# @option params [required, String] :name
# Application name.
#
Expand All @@ -120,8 +127,9 @@ def get(id)
# This contains the configuration for each product.
# This replaces the application `type` from version 1 of the Application API.
#
# @param [String] id
# @param [Hash] params
# @option params [Hash] :privacy
# - **:improve_ai** (Boolean) If set to `true``, Vonage may store and use your content and data for the improvement
# of Vonage's AI based services and technologies.
#
# @return [Response]
#
Expand Down
Loading