Class: Perka::Model::Merchant

Inherits:
BaseEntityGlobal show all
Defined in:
lib/perka/model/merchant.rb

Overview

Merchants operate the retail locations that offer a Perka loyalty program.

Constant Summary collapse

PROPERTY_NAMES =
[
    :last_action_at,
    :visit_expiration_minutes,
    :program_tiers,
    :merchant_locations,
    :loyalty_type,

    # A list of Clerks, which are limited to acting on specific locations.
    :clerks,
    :merchant_state,
    :sales_demo,
    :headline,
    :merchant_capabilities,
    :merchant_users,
    :notes,

    # Points-based merchants will define one or more catalog items for which
    # points can be redeemed.
    :points_catalog_items,

    # Points-based merchants may offer a signup bonus to new customers for signing
    # up.
    :points_signup_bonus,
    :terms,
    :website_url,
    :name
]