Module: SlidizeCloud

Defined in:
lib/slidize_cloud/version.rb,
lib/slidize_cloud.rb,
lib/slidize_cloud/api_error.rb,
lib/slidize_cloud/api_client.rb,
lib/slidize_cloud/configuration.rb,
lib/slidize_cloud/api/slidize_api.rb,
lib/slidize_cloud/models/export_format.rb,
lib/slidize_cloud/models/merge_options.rb,
lib/slidize_cloud/models/merge_request.rb,
lib/slidize_cloud/models/split_options.rb,
lib/slidize_cloud/models/split_request.rb,
lib/slidize_cloud/models/video_options.rb,
lib/slidize_cloud/models/convert_request.rb,
lib/slidize_cloud/models/protect_request.rb,
lib/slidize_cloud/models/unprotect_request.rb,
lib/slidize_cloud/models/protection_options.rb,
lib/slidize_cloud/models/replace_text_options.rb,
lib/slidize_cloud/models/replace_text_request.rb,
lib/slidize_cloud/models/video_resolution_type.rb,
lib/slidize_cloud/models/video_transition_type.rb,
lib/slidize_cloud/models/text_watermark_options.rb,
lib/slidize_cloud/models/text_watermark_request.rb,
lib/slidize_cloud/models/image_watermark_options.rb,
lib/slidize_cloud/models/image_watermark_request.rb,
lib/slidize_cloud/models/convert_to_video_request.rb

Overview

/**

* --------------------------------------------------------------------------------------------------------------------
* <copyright company="Smallize">
*   Copyright (c) 2024 Slidize for Cloud
* </copyright>
* <summary>
*   Permission is hereby granted, free of charge, to any person obtaining a copy
*  of this software and associated documentation files (the "Software"), to deal
*  in the Software without restriction, including without limitation the rights
*  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
*  copies of the Software, and to permit persons to whom the Software is
*  furnished to do so, subject to the following conditions:
* 
*  The above copyright notice and this permission notice shall be included in all
*  copies or substantial portions of the Software.
* 
*  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
*  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
*  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
*  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
*  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
*  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
*  SOFTWARE.
* </summary>
* --------------------------------------------------------------------------------------------------------------------
*/

Defined Under Namespace

Classes: ApiClient, ApiError, Configuration, ConvertRequest, ConvertToVideoRequest, ExportFormat, ImageWatermarkOptions, ImageWatermarkRequest, MergeOptions, MergeRequest, ProtectRequest, ProtectionOptions, ReplaceTextOptions, ReplaceTextRequest, SlidizeApi, SplitOptions, SplitRequest, TextWatermarkOptions, TextWatermarkRequest, UnprotectRequest, VideoOptions, VideoResolutionType, VideoTransitionType

Constant Summary collapse

VERSION =
'24.10.0'

Class Method Summary collapse

Class Method Details

.configureObject

Customize default settings for the SDK using block.

SlidizeCloud.configure do |config|
  config.username = "xxx"
  config.password = "xxx"
end

If no block given, return the default Configuration object.



68
69
70
71
72
73
74
# File 'lib/slidize_cloud.rb', line 68

def configure
  if block_given?
    yield(Configuration.default)
  else
    Configuration.default
  end
end