Class: LiterLlm::FileObject

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeFileObject

Returns a new instance of FileObject.

Parameters:

  • id: (String)
  • object: (String)
  • bytes: (Integer)
  • created_at: (Integer)
  • filename: (String)
  • purpose: (String)
  • status: (String)


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

def initialize: (?id: String, ?object: String, ?bytes: Integer, ?created_at: Integer, ?filename: String, ?purpose: String, ?status: String) -> void

Instance Attribute Details

#bytesInteger?

Returns the value of attribute bytes.

Returns:

  • (Integer, nil)


536
537
538
# File 'sig/types.rbs', line 536

def bytes
  @bytes
end

#created_atInteger?

Returns the value of attribute created_at.

Returns:

  • (Integer, nil)


537
538
539
# File 'sig/types.rbs', line 537

def created_at
  @created_at
end

#filenameString?

Returns the value of attribute filename.

Returns:

  • (String, nil)


538
539
540
# File 'sig/types.rbs', line 538

def filename
  @filename
end

#idString?

Returns the value of attribute id.

Returns:

  • (String, nil)


534
535
536
# File 'sig/types.rbs', line 534

def id
  @id
end

#objectString?

Returns the value of attribute object.

Returns:

  • (String, nil)


535
536
537
# File 'sig/types.rbs', line 535

def object
  @object
end

#purposeString?

Returns the value of attribute purpose.

Returns:

  • (String, nil)


539
540
541
# File 'sig/types.rbs', line 539

def purpose
  @purpose
end

#statusString?

Returns the value of attribute status.

Returns:

  • (String, nil)


540
541
542
# File 'sig/types.rbs', line 540

def status
  @status
end