Class: CrvApiClient::Api::Reproduction::LocalDate

Inherits:
Object
  • Object
show all
Defined in:
lib/crv_api_client/api/reproduction/reproduction.rb

Overview

/localDate

dayOfMonth - SOAP::SOAPInt
monthOfYear - SOAP::SOAPInt
year - SOAP::SOAPInt

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(dayOfMonth = nil, monthOfYear = nil, year = nil) ⇒ LocalDate

Returns a new instance of LocalDate.



626
627
628
629
630
# File 'lib/crv_api_client/api/reproduction/reproduction.rb', line 626

def initialize(dayOfMonth = nil, monthOfYear = nil, year = nil)
  @dayOfMonth = dayOfMonth
  @monthOfYear = monthOfYear
  @year = year
end

Instance Attribute Details

#dayOfMonthObject

Returns the value of attribute dayOfMonth.



622
623
624
# File 'lib/crv_api_client/api/reproduction/reproduction.rb', line 622

def dayOfMonth
  @dayOfMonth
end

#monthOfYearObject

Returns the value of attribute monthOfYear.



623
624
625
# File 'lib/crv_api_client/api/reproduction/reproduction.rb', line 623

def monthOfYear
  @monthOfYear
end

#yearObject

Returns the value of attribute year.



624
625
626
# File 'lib/crv_api_client/api/reproduction/reproduction.rb', line 624

def year
  @year
end