letter_of_credit
Define the LetterOfCredit classes representing letters of credit.
Classes:
-
LetterOfCredit
–A class to represent letter of credit instruments.
-
StandByLetterOfCredit
–A class to represent standby letter of credit instruments.
-
TradeLetterOfCredit
–A class to represent trade letter of credit instruments.
LetterOfCredit
LetterOfCredit(
name: str,
book_type: BookType | None = None,
credit_rating: Optional[CreditRating] = None,
issuer: Optional[Issuer] = None,
parent: Optional[Instrument] = None,
instrument_class: Optional[InstrumentClass] = None,
)
Bases: Instrument
A class to represent letter of credit instruments.
Methods:
-
accept
–Accept a visitor.
-
is_composite
–Check if the instrument is composite.
Attributes:
-
book_type
(Optional[BookType]
) –Get the book type of the instrument.
-
credit_rating
(CreditRating
) –Get the instrument's credit rating.
-
issuer
(Issuer
) –Get the instrument's issuer.
-
parent
(Optional[Instrument]
) –Get the parent instrument.
-
value
(float
) –Get the instrument's value.
value
property
writable
value: float
Get the instrument's value.
is_composite
is_composite() -> bool
Check if the instrument is composite.
StandByLetterOfCredit
StandByLetterOfCredit(
name: str,
book_type: BookType | None = None,
credit_rating: Optional[CreditRating] = None,
issuer: Optional[Issuer] = None,
parent: Optional[Instrument] = None,
instrument_class: Optional[InstrumentClass] = None,
)
Bases: Instrument
A class to represent standby letter of credit instruments.
Methods:
-
accept
–Accept a visitor.
-
is_composite
–Check if the instrument is composite.
Attributes:
-
book_type
(Optional[BookType]
) –Get the book type of the instrument.
-
credit_rating
(CreditRating
) –Get the instrument's credit rating.
-
issuer
(Issuer
) –Get the instrument's issuer.
-
parent
(Optional[Instrument]
) –Get the parent instrument.
-
value
(float
) –Get the instrument's value.
value
property
writable
value: float
Get the instrument's value.
is_composite
is_composite() -> bool
Check if the instrument is composite.
TradeLetterOfCredit
TradeLetterOfCredit(
name: str,
book_type: BookType | None = None,
credit_rating: Optional[CreditRating] = None,
issuer: Optional[Issuer] = None,
parent: Optional[Instrument] = None,
instrument_class: Optional[InstrumentClass] = None,
)
Bases: Instrument
A class to represent trade letter of credit instruments.
Methods:
-
accept
–Accept a visitor.
-
is_composite
–Check if the instrument is composite.
Attributes:
-
book_type
(Optional[BookType]
) –Get the book type of the instrument.
-
credit_rating
(CreditRating
) –Get the instrument's credit rating.
-
issuer
(Issuer
) –Get the instrument's issuer.
-
parent
(Optional[Instrument]
) –Get the parent instrument.
-
value
(float
) –Get the instrument's value.
value
property
writable
value: float
Get the instrument's value.
is_composite
is_composite() -> bool
Check if the instrument is composite.