Daml.Finance.Interface.Instrument.Option.European.Factory

Interfaces

interface Factory

Factory interface to instantiate European options.

viewtype V

  • Choice Archive

    Controller: Signatories of implementing template

    Returns: ()

    (no fields)

  • Choice Create

    Create a new instrument.

    Controller: (DA.Internal.Record.getField @"depository" (DA.Internal.Record.getField @"instrument" european)), (DA.Internal.Record.getField @"issuer" (DA.Internal.Record.getField @"instrument" european))

    Returns: ContractId I

    Field Type Description
    european European Attributes to create a European option.
    observers PartiesMap The instrument’s observers.
  • Choice Remove

    Archive an instrument.

    Controller: (DA.Internal.Record.getField @"depository" instrument), (DA.Internal.Record.getField @"issuer" instrument)

    Returns: ()

    Field Type Description
    instrument InstrumentKey The instrument’s key.
  • Method asDisclosure : I

    Conversion to Disclosure interface.

  • Method create’ : Create -> Update (ContractId I)

    Implementation of Create choice.

  • Method remove : Remove -> Update ()

    Implementation of Remove choice.

Typeclasses

class Implementation t => HasImplementation t where

Data Types

type F

= Factory

Type synonym for Factory.

type Implementation t

= (HasToInterface t Factory, Implementation t)

Type constraint for requiring templates to implement Factory along with Disclosure.

type V

= View

Type synonym for View.

instance HasFromAnyView Factory V

data View

View of Factory.

View

Field Type Description
provider Party The provider of the Factory.

instance Eq View

instance Show View