Class: Xberg::ArchiveMetadata
- Inherits:
-
Object
- Object
- Xberg::ArchiveMetadata
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#compressed_size ⇒ Integer?
Returns the value of attribute compressed_size.
-
#file_count ⇒ Integer?
Returns the value of attribute file_count.
-
#file_list ⇒ Array[String]?
Returns the value of attribute file_list.
-
#format ⇒ String?
Returns the value of attribute format.
-
#total_size ⇒ Integer?
Returns the value of attribute total_size.
Instance Method Summary collapse
-
#initialize ⇒ ArchiveMetadata
constructor
A new instance of ArchiveMetadata.
Constructor Details
#initialize ⇒ ArchiveMetadata
Returns a new instance of ArchiveMetadata.
1279 |
# File 'sig/types.rbs', line 1279
def initialize: (?format: String, ?file_count: Integer, ?file_list: Array[String], ?total_size: Integer, ?compressed_size: Integer) -> void
|
Instance Attribute Details
#compressed_size ⇒ Integer?
Returns the value of attribute compressed_size.
1277 1278 1279 |
# File 'sig/types.rbs', line 1277 def compressed_size @compressed_size end |
#file_count ⇒ Integer?
Returns the value of attribute file_count.
1274 1275 1276 |
# File 'sig/types.rbs', line 1274 def file_count @file_count end |
#file_list ⇒ Array[String]?
Returns the value of attribute file_list.
1275 1276 1277 |
# File 'sig/types.rbs', line 1275 def file_list @file_list end |
#format ⇒ String?
Returns the value of attribute format.
1273 1274 1275 |
# File 'sig/types.rbs', line 1273 def format @format end |
#total_size ⇒ Integer?
Returns the value of attribute total_size.
1276 1277 1278 |
# File 'sig/types.rbs', line 1276 def total_size @total_size end |