Class: LiterLlm::CatalogRefreshConfig
- Inherits:
-
Object
- Object
- LiterLlm::CatalogRefreshConfig
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#cache_path ⇒ String?
Returns the value of attribute cache_path.
-
#enabled ⇒ Boolean?
Returns the value of attribute enabled.
-
#source_url ⇒ String?
Returns the value of attribute source_url.
-
#ttl_seconds ⇒ Integer?
Returns the value of attribute ttl_seconds.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize ⇒ CatalogRefreshConfig
constructor
A new instance of CatalogRefreshConfig.
Constructor Details
#initialize ⇒ CatalogRefreshConfig
Returns a new instance of CatalogRefreshConfig.
828 |
# File 'sig/types.rbs', line 828
def initialize: (?enabled: bool, ?source_url: String, ?ttl_seconds: Integer, ?cache_path: String) -> void
|
Instance Attribute Details
#cache_path ⇒ String?
Returns the value of attribute cache_path.
826 827 828 |
# File 'sig/types.rbs', line 826 def cache_path @cache_path end |
#enabled ⇒ Boolean?
Returns the value of attribute enabled.
823 824 825 |
# File 'sig/types.rbs', line 823 def enabled @enabled end |
#source_url ⇒ String?
Returns the value of attribute source_url.
824 825 826 |
# File 'sig/types.rbs', line 824 def source_url @source_url end |
#ttl_seconds ⇒ Integer?
Returns the value of attribute ttl_seconds.
825 826 827 |
# File 'sig/types.rbs', line 825 def ttl_seconds @ttl_seconds end |
Class Method Details
.default ⇒ CatalogRefreshConfig
829 |
# File 'sig/types.rbs', line 829
def self.default: () -> CatalogRefreshConfig
|