Class: ApimaticCalculator::OperationTypeEnum

Inherits:
Object
  • Object
show all
Defined in:
lib/apimatic_calculator/models/operation_type_enum.rb

Overview

Possible operators are sum, subtract, multiply, divide

Constant Summary collapse

OPERATION_TYPE_ENUM =
[
  # Represents the sum operator
  SUM = 'SUM'.freeze,

  # Represents the subtract operator
  SUBTRACT = 'SUBTRACT'.freeze,

  # Represents the multiply operator
  MULTIPLY = 'MULTIPLY'.freeze,

  # Represents the divide operator
  DIVIDE = 'DIVIDE'.freeze
].freeze