Class: Crawlberg::JsonLdEntry

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeJsonLdEntry

Returns a new instance of JsonLdEntry.

Parameters:

  • schema_type: (String)
  • name: (String)
  • raw: (String)


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

def initialize: (?schema_type: String, ?name: String, ?raw: String) -> void

Instance Attribute Details

#nameString?

Returns the value of attribute name.

Returns:

  • (String, nil)


288
289
290
# File 'sig/types.rbs', line 288

def name
  @name
end

#rawString?

Returns the value of attribute raw.

Returns:

  • (String, nil)


289
290
291
# File 'sig/types.rbs', line 289

def raw
  @raw
end

#schema_typeString?

Returns the value of attribute schema_type.

Returns:

  • (String, nil)


287
288
289
# File 'sig/types.rbs', line 287

def schema_type
  @schema_type
end