Class: ApimaticTestingCalculator::OperationTypeEnum

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

Overview

Operations types include: SUM, SUBTRACT, DIVIDE, MULTIPLY

Constant Summary collapse

OPERATION_TYPE_ENUM =
[
  # Adds the specified variables.
  SUM = 'SUM'.freeze,

  # Subtracts the specified variables.
  SUBTRACT = 'SUBTRACT'.freeze,

  # Multiplies the specified variables.
  MULTIPLY = 'MULTIPLY'.freeze,

  # Divides the specified variables.
  DIVIDE = 'DIVIDE'.freeze
].freeze