You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/v2/files/index.html
+16-1
Original file line number
Diff line number
Diff line change
@@ -866,6 +866,21 @@
866
866
"title" : "",
867
867
"type" : "object",
868
868
"properties" : {
869
+
"SendWithObject" : {
870
+
"type" : "boolean",
871
+
"description" : "Boolean flag to determines whether the file is sent with the document it is attached to on client facing communications. Note- The SendWithObject element is only returned when using /Associations/{ObjectId} endpoint.",
872
+
"example" : true
873
+
},
874
+
"Name" : {
875
+
"type" : "string",
876
+
"description" : "The name of the associated file. Note- The Name element is only returned when using /Associations/{ObjectId} endpoint.",
877
+
"example" : "Test.pdf"
878
+
},
879
+
"Size" : {
880
+
"type" : "integer",
881
+
"description" : "The size of the associated file in bytes. Note- The Size element is only returned when using /Associations/{ObjectId} endpoint.",
882
+
"example" : 12357
883
+
},
869
884
"FileId" : {
870
885
"type" : "string",
871
886
"description" : "The unique identifier of the file",
Copy file name to clipboardexpand all lines: lib/Api/AssetApi.php
+1-1
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@
14
14
*
15
15
* The Assets API exposes fixed asset related functions of the Xero Accounting application and can be used for a variety of purposes such as creating assets, retrieving asset valuations etc.
Copy file name to clipboardexpand all lines: lib/Api/FinanceApi.php
+1-1
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@
14
14
*
15
15
* The Finance API is a collection of endpoints which customers can use in the course of a loan application, which may assist lenders to gain the confidence they need to provide capital.
* @param bool|null $send_with_object Boolean flag to determines whether the file is sent with the document it is attached to on client facing communications. Note- The SendWithObject element is only returned when using /Associations/{ObjectId} endpoint.
258
+
*
259
+
* @return $this
260
+
*/
261
+
public function setSendWithObject($send_with_object)
* @param string|null $name The name of the associated file. Note- The Name element is only returned when using /Associations/{ObjectId} endpoint.
285
+
*
286
+
* @return $this
287
+
*/
288
+
public function setName($name)
289
+
{
290
+
291
+
$this->container['name'] = $name;
292
+
293
+
return $this;
294
+
}
295
+
296
+
297
+
298
+
/**
299
+
* Gets size
300
+
*
301
+
* @return int|null
302
+
*/
303
+
public function getSize()
304
+
{
305
+
return $this->container['size'];
306
+
}
307
+
308
+
/**
309
+
* Sets size
310
+
*
311
+
* @param int|null $size The size of the associated file in bytes. Note- The Size element is only returned when using /Associations/{ObjectId} endpoint.
0 commit comments