Class: LiterLlm::ModelObject

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeModelObject

Returns a new instance of ModelObject.

Parameters:

  • id: (String)
  • object: (String)
  • created: (Integer)
  • owned_by: (String)


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

def initialize: (?id: String, ?object: String, ?created: Integer, ?owned_by: String) -> void

Instance Attribute Details

#createdInteger?

Returns the value of attribute created.

Returns:

  • (Integer, nil)


519
520
521
# File 'sig/types.rbs', line 519

def created
  @created
end

#idString?

Returns the value of attribute id.

Returns:

  • (String, nil)


517
518
519
# File 'sig/types.rbs', line 517

def id
  @id
end

#objectString?

Returns the value of attribute object.

Returns:

  • (String, nil)


518
519
520
# File 'sig/types.rbs', line 518

def object
  @object
end

#owned_byString?

Returns the value of attribute owned_by.

Returns:

  • (String, nil)


520
521
522
# File 'sig/types.rbs', line 520

def owned_by
  @owned_by
end