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)


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

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:



1978
1979
1980
# File 'sig/types.rbs', line 1978

def category
  @category
end

#descriptionString (readonly)

Returns the value of attribute description.

Returns:

  • (String)


1977
1978
1979
# File 'sig/types.rbs', line 1977

def description
  @description
end

#emit_citationsBoolean (readonly)

Returns the value of attribute emit_citations.

Returns:

  • (Boolean)


1981
1982
1983
# File 'sig/types.rbs', line 1981

def emit_citations
  @emit_citations
end

#fingerprintString (readonly)

Returns the value of attribute fingerprint.

Returns:

  • (String)


1982
1983
1984
# File 'sig/types.rbs', line 1982

def fingerprint
  @fingerprint
end

#idString (readonly)

Returns the value of attribute id.

Returns:

  • (String)


1974
1975
1976
# File 'sig/types.rbs', line 1974

def id
  @id
end

#preferred_call_modeCallMode (readonly)

Returns the value of attribute preferred_call_mode.

Returns:



1980
1981
1982
# File 'sig/types.rbs', line 1980

def preferred_call_mode
  @preferred_call_mode
end

#schema_nameString (readonly)

Returns the value of attribute schema_name.

Returns:

  • (String)


1976
1977
1978
# File 'sig/types.rbs', line 1976

def schema_name
  @schema_name
end

#tagsArray[String] (readonly)

Returns the value of attribute tags.

Returns:

  • (Array[String])


1979
1980
1981
# File 'sig/types.rbs', line 1979

def tags
  @tags
end

#versionString (readonly)

Returns the value of attribute version.

Returns:

  • (String)


1975
1976
1977
# File 'sig/types.rbs', line 1975

def version
  @version
end