Skip to content

Commit 43528e1

Browse files
author
Auto Mation
committed
TASK: Updating SDK
1 parent b7fa8de commit 43528e1

File tree

93 files changed

+519
-54
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+519
-54
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
hash=fb0676293dcb25f0700eb2455a123a9fd74ad0ef
1+
hash=32644228f1ecb4b9d5023d1652f7ca47f05c8d2c
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
hash=fb0676293dcb25f0700eb2455a123a9fd74ad0ef
1+
hash=32644228f1ecb4b9d5023d1652f7ca47f05c8d2c
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
hash=fb0676293dcb25f0700eb2455a123a9fd74ad0ef
1+
hash=32644228f1ecb4b9d5023d1652f7ca47f05c8d2c
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
hash=fb0676293dcb25f0700eb2455a123a9fd74ad0ef
1+
hash=32644228f1ecb4b9d5023d1652f7ca47f05c8d2c
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
hash=fb0676293dcb25f0700eb2455a123a9fd74ad0ef
1+
hash=32644228f1ecb4b9d5023d1652f7ca47f05c8d2c

lib/commercetools-import/src/Models/Common/Asset.php

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,25 @@ public function getKey();
3535
public function getSources();
3636

3737
/**
38+
* <p>A localized string is a JSON object where the keys are of <a href="https://en.wikipedia.org/wiki/IETF_language_tag">IETF language tag</a>, and the values the corresponding strings used for that language.</p>
39+
* <pre><code class="language-json">{
40+
* &quot;de&quot;: &quot;Hundefutter&quot;,
41+
* &quot;en&quot;: &quot;dog food&quot;
42+
* }
43+
* </code></pre>
44+
*
3845
* @return null|LocalizedString
3946
*/
4047
public function getName();
4148

4249
/**
50+
* <p>A localized string is a JSON object where the keys are of <a href="https://en.wikipedia.org/wiki/IETF_language_tag">IETF language tag</a>, and the values the corresponding strings used for that language.</p>
51+
* <pre><code class="language-json">{
52+
* &quot;de&quot;: &quot;Hundefutter&quot;,
53+
* &quot;en&quot;: &quot;dog food&quot;
54+
* }
55+
* </code></pre>
56+
*
4357
* @return null|LocalizedString
4458
*/
4559
public function getDescription();

lib/commercetools-import/src/Models/Common/AssetBuilder.php

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,13 @@ public function getSources()
7272
}
7373

7474
/**
75+
* <p>A localized string is a JSON object where the keys are of <a href="https://en.wikipedia.org/wiki/IETF_language_tag">IETF language tag</a>, and the values the corresponding strings used for that language.</p>
76+
* <pre><code class="language-json">{
77+
* &quot;de&quot;: &quot;Hundefutter&quot;,
78+
* &quot;en&quot;: &quot;dog food&quot;
79+
* }
80+
* </code></pre>
81+
*
7582
* @return null|LocalizedString
7683
*/
7784
public function getName()
@@ -80,6 +87,13 @@ public function getName()
8087
}
8188

8289
/**
90+
* <p>A localized string is a JSON object where the keys are of <a href="https://en.wikipedia.org/wiki/IETF_language_tag">IETF language tag</a>, and the values the corresponding strings used for that language.</p>
91+
* <pre><code class="language-json">{
92+
* &quot;de&quot;: &quot;Hundefutter&quot;,
93+
* &quot;en&quot;: &quot;dog food&quot;
94+
* }
95+
* </code></pre>
96+
*
8397
* @return null|LocalizedString
8498
*/
8599
public function getDescription()

lib/commercetools-import/src/Models/Common/AssetDimensions.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,15 @@ interface AssetDimensions extends JsonObject
1717
public const FIELD_H = 'h';
1818

1919
/**
20+
* <p>The width of the asset source.</p>
21+
*
2022
* @return null|float
2123
*/
2224
public function getW();
2325

2426
/**
27+
* <p>The height of the asset source.</p>
28+
*
2529
* @return null|float
2630
*/
2731
public function getH();

lib/commercetools-import/src/Models/Common/AssetDimensionsBuilder.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ final class AssetDimensionsBuilder implements Builder
3131
private $h;
3232

3333
/**
34+
* <p>The width of the asset source.</p>
35+
*
3436
* @return null|float
3537
*/
3638
public function getW()
@@ -39,6 +41,8 @@ public function getW()
3941
}
4042

4143
/**
44+
* <p>The height of the asset source.</p>
45+
*
4246
* @return null|float
4347
*/
4448
public function getH()

lib/commercetools-import/src/Models/Common/AssetDimensionsModel.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ public function __construct(
4242
}
4343

4444
/**
45+
* <p>The width of the asset source.</p>
46+
*
4547
* @return null|float
4648
*/
4749
public function getW()
@@ -59,6 +61,8 @@ public function getW()
5961
}
6062

6163
/**
64+
* <p>The height of the asset source.</p>
65+
*
6266
* @return null|float
6367
*/
6468
public function getH()

0 commit comments

Comments
 (0)