Sha256: 06df85f3d0726356dd5ac928e688fe339b3f1d0eb28ea492f9442c809040ff2c
Contents?: true
Size: 1023 Bytes
Versions: 92
Compression:
Stored size: 1023 Bytes
Contents
module Alula class BillingProgram < Alula::RestResource extend Alula::ResourceAttributes extend Alula::ApiOperations::Request extend Alula::ApiOperations::List resource_path 'billing/programs' type 'billing-program' # Resource Fields # Not all params are used at the moment. See Alula::ResourceAttributes for details # on how params are parsed, field :id, type: :string, sortable: false, filterable: false, creatable_by: [], patchable_by: [] field :name, type: :string, sortable: false, filterable: false, creatable_by: [], patchable_by: [] field :description, type: :string, sortable: false, filterable: false, creatable_by: [], patchable_by: [] field :params_schema, type: :object, sortable: false, filterable: false, creatable_by: [], patchable_by: [] end end
Version data entries
92 entries across 92 versions & 1 rubygems