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)


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

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

Instance Attribute Details

#createdInteger (readonly)

Returns the value of attribute created.

Returns:

  • (Integer)


529
530
531
# File 'sig/types.rbs', line 529

def created
  @created
end

#idString (readonly)

Returns the value of attribute id.

Returns:

  • (String)


527
528
529
# File 'sig/types.rbs', line 527

def id
  @id
end

#objectString (readonly)

Returns the value of attribute object.

Returns:

  • (String)


528
529
530
# File 'sig/types.rbs', line 528

def object
  @object
end

#owned_byString (readonly)

Returns the value of attribute owned_by.

Returns:

  • (String)


530
531
532
# File 'sig/types.rbs', line 530

def owned_by
  @owned_by
end