-
-
Notifications
You must be signed in to change notification settings - Fork 119
/
Copy pathStorageMetrics.php
97 lines (95 loc) · 2.1 KB
/
StorageMetrics.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<?php
/**
* Generated 2024-04-20T08:07:39+00:00 16.0.24803.12007
*/
namespace Office365\SharePoint;
use Office365\Runtime\ClientObject;
/**
* Represents
* storage-related metrics.
*/
class StorageMetrics extends ClientObject
{
/**
* @return string
*/
public function getLastModified()
{
if (!$this->isPropertyAvailable("LastModified")) {
return null;
}
return $this->getProperty("LastModified");
}
/**
* @var string
*/
public function setLastModified($value)
{
$this->setProperty("LastModified", $value, true);
}
/**
* @return integer
*/
public function getTotalFileCount()
{
if (!$this->isPropertyAvailable("TotalFileCount")) {
return null;
}
return $this->getProperty("TotalFileCount");
}
/**
* @var integer
*/
public function setTotalFileCount($value)
{
$this->setProperty("TotalFileCount", $value, true);
}
/**
* @return integer
*/
public function getTotalFileStreamSize()
{
if (!$this->isPropertyAvailable("TotalFileStreamSize")) {
return null;
}
return $this->getProperty("TotalFileStreamSize");
}
/**
* @var integer
*/
public function setTotalFileStreamSize($value)
{
$this->setProperty("TotalFileStreamSize", $value, true);
}
/**
* @return integer
*/
public function getTotalSize()
{
if (!$this->isPropertyAvailable("TotalSize")) {
return null;
}
return $this->getProperty("TotalSize");
}
/**
* @var integer
*/
public function setTotalSize($value)
{
$this->setProperty("TotalSize", $value, true);
}
/**
* @return integer
*/
public function getAdditionalFileStreamSize()
{
return $this->getProperty("AdditionalFileStreamSize");
}
/**
* @var integer
*/
public function setAdditionalFileStreamSize($value)
{
return $this->setProperty("AdditionalFileStreamSize", $value, true);
}
}