BooleanCompletion

Inherit from Completion

Primary key: id: int

schema BooleanCompletion extends Completion {
  @primary id: int,
  name: string
}

BooleanCompletion::getName

pub fn getName(self: BooleanCompletion) -> string;

BooleanCompletion::isTrue

pub fn isTrue(self: BooleanCompletion) -> bool;

BooleanCompletion::__all__

Data constraint method.

pub fn __all__() -> *BooleanCompletion;

BooleanCompletion::getValueName

pub fn getValueName(self: BooleanCompletion) -> string;

BooleanCompletion::isFalse

pub fn isFalse(self: BooleanCompletion) -> bool;

BooleanCompletion::getValue

pub fn getValue(self: BooleanCompletion) -> *int;