Class: Xberg::PresetSummary

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializePresetSummary

Returns a new instance of PresetSummary.

Parameters:

  • id: (String)
  • version: (String)
  • schema_name: (String)
  • description: (String)
  • category: (PresetCategory)
  • tags: (Array[String])
  • preferred_call_mode: (CallMode)
  • emit_citations: (Boolean)
  • fingerprint: (String)


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

def initialize: (id: String, version: String, schema_name: String, description: String, category: PresetCategory, tags: Array[String], preferred_call_mode: CallMode, emit_citations: bool, fingerprint: String) -> void

Instance Attribute Details

#categoryPresetCategory (readonly)

Returns the value of attribute category.

Returns:



2090
2091
2092
# File 'sig/types.rbs', line 2090

def category
  @category
end

#descriptionString (readonly)

Returns the value of attribute description.

Returns:

  • (String)


2089
2090
2091
# File 'sig/types.rbs', line 2089

def description
  @description
end

#emit_citationsBoolean (readonly)

Returns the value of attribute emit_citations.

Returns:

  • (Boolean)


2093
2094
2095
# File 'sig/types.rbs', line 2093

def emit_citations
  @emit_citations
end

#fingerprintString (readonly)

Returns the value of attribute fingerprint.

Returns:

  • (String)


2094
2095
2096
# File 'sig/types.rbs', line 2094

def fingerprint
  @fingerprint
end

#idString (readonly)

Returns the value of attribute id.

Returns:

  • (String)


2086
2087
2088
# File 'sig/types.rbs', line 2086

def id
  @id
end

#preferred_call_modeCallMode (readonly)

Returns the value of attribute preferred_call_mode.

Returns:



2092
2093
2094
# File 'sig/types.rbs', line 2092

def preferred_call_mode
  @preferred_call_mode
end

#schema_nameString (readonly)

Returns the value of attribute schema_name.

Returns:

  • (String)


2088
2089
2090
# File 'sig/types.rbs', line 2088

def schema_name
  @schema_name
end

#tagsArray[String] (readonly)

Returns the value of attribute tags.

Returns:

  • (Array[String])


2091
2092
2093
# File 'sig/types.rbs', line 2091

def tags
  @tags
end

#versionString (readonly)

Returns the value of attribute version.

Returns:

  • (String)


2087
2088
2089
# File 'sig/types.rbs', line 2087

def version
  @version
end