class ONIX::ONIX21::SalesRights

Public Instance Methods

not_for_sale?() click to toggle source
# File lib/onix/onix21.rb, line 217
def not_for_sale?
  ["03", "04", "05", "06"].include?(@sales_rights_type)
end
territory() click to toggle source
# File lib/onix/onix21.rb, line 221
def territory
  Territory.new(@rights_country.split(" "))
end