Sha256: 8c91ff05be48cb7ef4e4868124b54168995fb131656d8e23d07dce9cf4f79114
Contents?: true
Size: 544 Bytes
Versions: 4
Compression:
Stored size: 544 Bytes
Contents
# frozen_string_literal: true module Yext module Api module Enumerations # An enumeration class to contain the possible status values for a listing. class ListingStatus include Yext::Api::Concerns::EnumAll WAITING_ON_YEXT = "WAITING_ON_YEXT" WAITING_ON_CUSTOMER = "WAITING_ON_CUSTOMER" WAITING_ON_PUBLISHER = "WAITING_ON_PUBLISHER" LIVE = "LIVE" UNAVAILABLE = "UNAVAILABLE" OPTED_OUT = "OPTED_OUT" end end end end
Version data entries
4 entries across 4 versions & 1 rubygems