Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ <h3 id="toc">
<dt class="phpdocumentor-table-of-contents__entry -method -public">
<a href="classes/LINE-Clients-ManageAudience-Model-CreateAudienceGroupResponse.html#method_getExpireTimestamp">getExpireTimestamp()</a>
<span>
&nbsp;: float|null </span>
&nbsp;: int|null </span>
</dt>
<dd>Gets expireTimestamp</dd>

Expand Down Expand Up @@ -1029,7 +1029,7 @@ <h4 class="phpdocumentor-element__name" id="property_openAPITypes">
<span class="phpdocumentor-signature__visibility">protected</span>
<span class="phpdocumentor-signature__static">static</span> <span class="phpdocumentor-signature__type">array&lt;string|int, string&gt;</span>
<span class="phpdocumentor-signature__name">$openAPITypes</span>
= <span class="phpdocumentor-signature__default-value">[&#039;audienceGroupId&#039; =&gt; &#039;int&#039;, &#039;createRoute&#039; =&gt; &#039;string&#039;, &#039;type&#039; =&gt; &#039;\\LINE\\Clients\\ManageAudience\\Model\\AudienceGroupType&#039;, &#039;description&#039; =&gt; &#039;string&#039;, &#039;created&#039; =&gt; &#039;int&#039;, &#039;permission&#039; =&gt; &#039;string&#039;, &#039;expireTimestamp&#039; =&gt; &#039;float&#039;, &#039;isIfaAudience&#039; =&gt; &#039;bool&#039;]</span></code>
= <span class="phpdocumentor-signature__default-value">[&#039;audienceGroupId&#039; =&gt; &#039;int&#039;, &#039;createRoute&#039; =&gt; &#039;string&#039;, &#039;type&#039; =&gt; &#039;\\LINE\\Clients\\ManageAudience\\Model\\AudienceGroupType&#039;, &#039;description&#039; =&gt; &#039;string&#039;, &#039;created&#039; =&gt; &#039;int&#039;, &#039;permission&#039; =&gt; &#039;string&#039;, &#039;expireTimestamp&#039; =&gt; &#039;int&#039;, &#039;isIfaAudience&#039; =&gt; &#039;bool&#039;]</span></code>



Expand Down Expand Up @@ -1375,14 +1375,14 @@ <h4 class="phpdocumentor-element__name" id="method_getExpireTimestamp">

<code class="phpdocumentor-code phpdocumentor-signature ">
<span class="phpdocumentor-signature__visibility">public</span>
<span class="phpdocumentor-signature__name">getExpireTimestamp</span><span>(</span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">float|null</span></code>
<span class="phpdocumentor-signature__name">getExpireTimestamp</span><span>(</span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">int|null</span></code>





<h5 class="phpdocumentor-return-value__heading">Return values</h5>
<span class="phpdocumentor-signature__response_type">float|null</span>
<span class="phpdocumentor-signature__response_type">int|null</span>
&mdash;


Expand Down Expand Up @@ -2211,14 +2211,14 @@ <h4 class="phpdocumentor-element__name" id="method_setExpireTimestamp">

<code class="phpdocumentor-code phpdocumentor-signature ">
<span class="phpdocumentor-signature__visibility">public</span>
<span class="phpdocumentor-signature__name">setExpireTimestamp</span><span>(</span><span class="phpdocumentor-signature__argument"><span class="phpdocumentor-signature__argument__return-type">float|null&nbsp;</span><span class="phpdocumentor-signature__argument__name">$expireTimestamp</span></span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">self</span></code>
<span class="phpdocumentor-signature__name">setExpireTimestamp</span><span>(</span><span class="phpdocumentor-signature__argument"><span class="phpdocumentor-signature__argument__return-type">int|null&nbsp;</span><span class="phpdocumentor-signature__argument__name">$expireTimestamp</span></span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">self</span></code>


<h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
<dl class="phpdocumentor-argument-list">
<dt class="phpdocumentor-argument-list__entry">
<span class="phpdocumentor-signature__argument__name">$expireTimestamp</span>
: <span class="phpdocumentor-signature__argument__return-type">float|null</span>
: <span class="phpdocumentor-signature__argument__return-type">int|null</span>
</dt>
<dd class="phpdocumentor-argument-list__definition">
<section class="phpdocumentor-description"><p>Time of audience expiration. Only returned for specific audiences.</p>
Expand Down
2 changes: 1 addition & 1 deletion line-openapi
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class CreateAudienceGroupResponse implements ModelInterface, ArrayAccess, \JsonS
'description' => 'string',
'created' => 'int',
'permission' => 'string',
'expireTimestamp' => 'float',
'expireTimestamp' => 'int',
'isIfaAudience' => 'bool'
];

Expand Down Expand Up @@ -585,7 +585,7 @@ public function setPermission($permission)
/**
* Gets expireTimestamp
*
* @return float|null
* @return int|null
*/
public function getExpireTimestamp()
{
Expand All @@ -595,7 +595,7 @@ public function getExpireTimestamp()
/**
* Sets expireTimestamp
*
* @param float|null $expireTimestamp Time of audience expiration. Only returned for specific audiences.
* @param int|null $expireTimestamp Time of audience expiration. Only returned for specific audiences.
*
* @return self
*/
Expand Down