addRule('key', [ 'type' => self::TYPE_STRING, 'description' => 'Attribute Key.', 'default' => '', 'example' => 'isEnabled', ]) ->addRule('type', [ 'type' => self::TYPE_STRING, 'description' => 'Attribute type.', 'default' => '', 'example' => 'boolean', ]) ->addRule('default', [ 'type' => self::TYPE_BOOLEAN, 'description' => 'Default value for attribute when not provided. Cannot be set when attribute is required.', 'default' => null, 'required' => false, 'example' => false ]) ; } public array $conditions = [ 'type' => self::TYPE_BOOLEAN ]; /** * Get Name * * @return string */ public function getName(): string { return 'AttributeBoolean'; } /** * Get Type * * @return string */ public function getType(): string { return Response::MODEL_ATTRIBUTE_BOOLEAN; } }