class Zakuro::Result::Operation::Month::Annotation

Annotation 注釈

Attributes

description[R]

@return [String] 注釈内容

note[R]

@return [String] 注釈補記

Public Class Methods

new(description:, note:) click to toggle source

初期化

@param [String] description 注釈内容 @param [<Type>] note 注釈補記

# File lib/zakuro/result/operation.rb, line 106
def initialize(description:, note:)
  @description = description
  @note = note
end