Sha256: 59f5ea730b4dc4920ebe901758573cc55b93b8c2a4153351d46353716368c8b5

Contents?: true

Size: 1.55 KB

Versions: 4

Compression:

Stored size: 1.55 KB

Contents

module SoapyCake
  module Const
    CONSTS = {
      account_status_id: {
        active: 1,
        inactive: 2,
        pending: 3
      },
      offer_status_id: {
        public: 1,
        private: 2,
        apply_to_run: 3,
        inactive: 4
      },
      offer_type_id: {
        hosted: 1,
        host_n_post: 2,
        third_party: 3
      },
      currency_id: {
        usd: 1,
        eur: 2,
        gbd: 3,
        aud: 4,
        cad: 5
      },
      payment_setting_id: {
        system_default: 1,
        offer_currency: 2,
        affiliate_currency: 3
      },
      price_format_id: {
        cpa: 1,
        cpc: 2,
        cpm: 3,
        fixed: 4,
        revshare: 5
      },
      # The ID mapping in the API docs is wrong, these values are taken from the UI.
      conversion_behavior_id: {
        system: 0,
        adv_off: 1,
        adv_no_aff: 2,
        no_adv_aff: 3,
        no_adv_no_aff: 4,
        ignore: 5
      },
      cap_type_id: {
        click: 1,
        conversion: 2
      },
      cap_interval_id: {
        indefinite: 0,
        daily: 1,
        weekly: 2,
        monthly: 3,
        custom: 4
      },
      creative_type_id: {
        link: 1,
        email: 2,
        image: 3,
        flash: 4
      },
      creative_status_id: {
        active: 1,
        inactive: 2,
        hidden: 3
      }
    }

    CONSTS.merge!(
      conversion_cap_behavior: CONSTS[:conversion_behavior_id],
      conversion_behavior_on_redirect: CONSTS[:conversion_behavior_id],
      status_id: CONSTS[:offer_status_id]
    )
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
soapy_cake-1.14.0 lib/soapy_cake/const.rb
soapy_cake-1.13.1 lib/soapy_cake/const.rb
soapy_cake-1.13.0 lib/soapy_cake/const.rb
soapy_cake-1.11.6 lib/soapy_cake/const.rb