Skip to content

credit_card

Define the CreditCard class representing credit card instruments.

Classes:

  • CreditCard

    A class to represent credit card instruments.

CreditCard

CreditCard(
    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 credit card instruments.

Methods:

Attributes:

book_type property writable

book_type: Optional[BookType]

Get the book type of the instrument.

credit_rating property writable

credit_rating: CreditRating

Get the instrument's credit rating.

issuer property writable

issuer: Issuer

Get the instrument's issuer.

parent property writable

parent: Optional[Instrument]

Get the parent instrument.

value property writable

value: float

Get the instrument's value.

accept

accept(visitor: Visitor) -> None

Accept a visitor.

is_composite

is_composite() -> bool

Check if the instrument is composite.