Class: LiterLlm::CatalogRefreshConfig

Inherits:
Object
  • Object
show all
Defined in:
sig/types.rbs

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeCatalogRefreshConfig

Returns a new instance of CatalogRefreshConfig.

Parameters:

  • enabled: (Boolean)
  • source_url: (String)
  • ttl_seconds: (Integer)
  • cache_path: (String)


916
# File 'sig/types.rbs', line 916

def initialize: (?enabled: bool, ?source_url: String, ?ttl_seconds: Integer, ?cache_path: String) -> void

Instance Attribute Details

#cache_pathString? (readonly)

Returns the value of attribute cache_path.

Returns:

  • (String, nil)


914
915
916
# File 'sig/types.rbs', line 914

def cache_path
  @cache_path
end

#enabledBoolean (readonly)

Returns the value of attribute enabled.

Returns:

  • (Boolean)


911
912
913
# File 'sig/types.rbs', line 911

def enabled
  @enabled
end

#source_urlString (readonly)

Returns the value of attribute source_url.

Returns:

  • (String)


912
913
914
# File 'sig/types.rbs', line 912

def source_url
  @source_url
end

#ttl_secondsInteger (readonly)

Returns the value of attribute ttl_seconds.

Returns:

  • (Integer)


913
914
915
# File 'sig/types.rbs', line 913

def ttl_seconds
  @ttl_seconds
end