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)


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

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

Instance Attribute Details

#bytesInteger (readonly)

Returns the value of attribute bytes.

Returns:

  • (Integer)


375
376
377
# File 'sig/types.rbs', line 375

def bytes
  @bytes
end

#created_atInteger (readonly)

Returns the value of attribute created_at.

Returns:

  • (Integer)


376
377
378
# File 'sig/types.rbs', line 376

def created_at
  @created_at
end

#filenameString (readonly)

Returns the value of attribute filename.

Returns:

  • (String)


377
378
379
# File 'sig/types.rbs', line 377

def filename
  @filename
end

#idString (readonly)

Returns the value of attribute id.

Returns:

  • (String)


373
374
375
# File 'sig/types.rbs', line 373

def id
  @id
end

#objectString (readonly)

Returns the value of attribute object.

Returns:

  • (String)


374
375
376
# File 'sig/types.rbs', line 374

def object
  @object
end

#purposeString (readonly)

Returns the value of attribute purpose.

Returns:

  • (String)


378
379
380
# File 'sig/types.rbs', line 378

def purpose
  @purpose
end

#statusString? (readonly)

Returns the value of attribute status.

Returns:

  • (String, nil)


379
380
381
# File 'sig/types.rbs', line 379

def status
  @status
end