-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathorigin_update_params.rb
More file actions
28 lines (25 loc) · 1012 Bytes
/
origin_update_params.rb
File metadata and controls
28 lines (25 loc) · 1012 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# frozen_string_literal: true
module Imagekitio
module Models
module Accounts
# @see Imagekitio::Resources::Accounts::Origins#update
class OriginUpdateParams < Imagekitio::Internal::Type::BaseModel
extend Imagekitio::Internal::Type::RequestParameters::Converter
include Imagekitio::Internal::Type::RequestParameters
# @!attribute id
# Unique identifier for the origin. This is generated by ImageKit when you create
# a new origin.
#
# @return [String]
required :id, String
# @!method initialize(id:, request_options: {})
# Some parameter documentations has been truncated, see
# {Imagekitio::Models::Accounts::OriginUpdateParams} for more details.
#
# @param id [String] Unique identifier for the origin. This is generated by ImageKit when you create
#
# @param request_options [Imagekitio::RequestOptions, Hash{Symbol=>Object}]
end
end
end
end