Sha256: f670322c5b37523f6686eb22767ded041b9629c09f1bb965d831ed5bd7e10199

Contents?: true

Size: 836 Bytes

Versions: 6

Compression:

Stored size: 836 Bytes

Contents

# frozen_string_literal: true

module ChartMogul
  class Plan < APIResource
    set_resource_name 'Plan'
    set_resource_path '/v1/plans'

    readonly_attr :uuid

    writeable_attr :name
    writeable_attr :interval_count
    writeable_attr :interval_unit
    writeable_attr :external_id

    writeable_attr :data_source_uuid

    include API::Actions::Create
    include API::Actions::Custom
    include API::Actions::Destroy
    include API::Actions::Retrieve
    include API::Actions::Update

    def self.all(options = {})
      Plans.all(options)
    end
  end

  class Plans < APIResource
    set_resource_name 'Plans'
    set_resource_path '/v1/plans'

    set_resource_root_key :plans

    include Concerns::Entries
    include Concerns::Pageable2
    include Concerns::PageableWithCursor

    set_entry_class Plan
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
chartmogul-ruby-4.4.0 lib/chartmogul/plan.rb
chartmogul-ruby-4.3.0 lib/chartmogul/plan.rb
chartmogul-ruby-4.2.0 lib/chartmogul/plan.rb
chartmogul-ruby-4.1.0 lib/chartmogul/plan.rb
chartmogul-ruby-4.0.0 lib/chartmogul/plan.rb
chartmogul-ruby-3.3.1 lib/chartmogul/plan.rb