ISOStandardOrderProcess

ISOStandardOrderProcess

Format

R6Class object.

Value

Object of R6Class for modelling an ISO StandardOrderProcess

Author

Emmanuel Blondel <emmanuel.blondel1@gmail.com>

Super classes

geometa::geometaLogger -> geometa::ISOAbstractObject -> ISOStandardOrderProcess

Public fields

fees

fees [0..1]: character

plannedAvailableDateTime

plannedAvailableDateTime [0..1]: 'POSIXct/POSIXlt'

orderingInstructions

orderingInstructions [0..1]: character

turnaround

turnaround [0..1]: character

orderOptionsType

orderOptionsType [0..1]: ISORecordType (=> ISO 19115-3)

orderOptions

orderOptions [0..1]: ISORecord (=> ISO 19115-3)

Methods

Inherited methods


Method new()

Initializes object

Usage

ISOStandardOrderProcess$new(xml = NULL)

Arguments

xml

object of class XMLInternalNode-class


Method setFees()

Set fees

Usage

ISOStandardOrderProcess$setFees(fees, locales = NULL)

Arguments

fees

fees

locales

list of localized texts. Default is NULL


Method setPlannedAvailableDateTime()

Set planned available date time

Usage

ISOStandardOrderProcess$setPlannedAvailableDateTime(dateTime)

Arguments

dateTime

object of class POSIXct


Method setOrderingInstructions()

Set ordering instructions

Usage

ISOStandardOrderProcess$setOrderingInstructions(instructions, locales = NULL)

Arguments

instructions

instructions

locales

list of localized texts. Default is NULL


Method setTurnaround()

Set turnaround

Usage

ISOStandardOrderProcess$setTurnaround(turnaround, locales = NULL)

Arguments

turnaround

turnaround

locales

list of localized texts. Default is NULL


Method setOrderOptionsType()

Set order options type

Usage

ISOStandardOrderProcess$setOrderOptionsType(orderOptionsType)

Arguments

orderOptionsType

orderOptionsType object of class ISORecordType or character


Method setOrderOptions()

Set order options

Usage

ISOStandardOrderProcess$setOrderOptions(orderOptions)

Arguments

orderOptions

orderOptions object of class ISORecord or character


Method clone()

The objects of this class are cloneable with this method.

Usage

ISOStandardOrderProcess$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.

Examples

  md <- ISOStandardOrderProcess$new()
  md$setFees("fees")
  md$setPlannedAvailableDateTime(ISOdate(2017,7,5,12,0,0))
  md$setOrderingInstructions("instructions")
  md$setTurnaround("turnaround")
  xml <- md$encode()
#> [geometa][INFO] Object 'ISOStandardOrderProcess' is VALID according to ISO 19139 XML schemas!