Mise à jour des librairies

This commit is contained in:
lars
2019-03-10 23:30:23 +01:00
parent 2040b7be39
commit 7df3d72953
3603 changed files with 233169 additions and 107764 deletions

View File

@@ -21,6 +21,7 @@ class Google_Service_FirebaseDynamicLinks_CreateManagedShortLinkRequest extends
protected $dynamicLinkInfoDataType = '';
public $longDynamicLink;
public $name;
public $sdkVersion;
protected $suffixType = 'Google_Service_FirebaseDynamicLinks_Suffix';
protected $suffixDataType = '';
@@ -54,6 +55,14 @@ class Google_Service_FirebaseDynamicLinks_CreateManagedShortLinkRequest extends
{
return $this->name;
}
public function setSdkVersion($sdkVersion)
{
$this->sdkVersion = $sdkVersion;
}
public function getSdkVersion()
{
return $this->sdkVersion;
}
/**
* @param Google_Service_FirebaseDynamicLinks_Suffix
*/

View File

@@ -20,6 +20,7 @@ class Google_Service_FirebaseDynamicLinks_CreateShortDynamicLinkRequest extends
protected $dynamicLinkInfoType = 'Google_Service_FirebaseDynamicLinks_DynamicLinkInfo';
protected $dynamicLinkInfoDataType = '';
public $longDynamicLink;
public $sdkVersion;
protected $suffixType = 'Google_Service_FirebaseDynamicLinks_Suffix';
protected $suffixDataType = '';
@@ -45,6 +46,14 @@ class Google_Service_FirebaseDynamicLinks_CreateShortDynamicLinkRequest extends
{
return $this->longDynamicLink;
}
public function setSdkVersion($sdkVersion)
{
$this->sdkVersion = $sdkVersion;
}
public function getSdkVersion()
{
return $this->sdkVersion;
}
/**
* @param Google_Service_FirebaseDynamicLinks_Suffix
*/

View File

@@ -25,6 +25,7 @@ class Google_Service_FirebaseDynamicLinks_GetIosPostInstallAttributionResponse e
public $invitationId;
public $isStrongMatchExecutable;
public $matchMessage;
public $requestIpVersion;
public $requestedLink;
public $resolvedLink;
public $utmCampaign;
@@ -95,6 +96,14 @@ class Google_Service_FirebaseDynamicLinks_GetIosPostInstallAttributionResponse e
{
return $this->matchMessage;
}
public function setRequestIpVersion($requestIpVersion)
{
$this->requestIpVersion = $requestIpVersion;
}
public function getRequestIpVersion()
{
return $this->requestIpVersion;
}
public function setRequestedLink($requestedLink)
{
$this->requestedLink = $requestedLink;

View File

@@ -0,0 +1,48 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_FirebaseDynamicLinks_GetIosReopenAttributionRequest extends Google_Model
{
public $bundleId;
public $requestedLink;
public $sdkVersion;
public function setBundleId($bundleId)
{
$this->bundleId = $bundleId;
}
public function getBundleId()
{
return $this->bundleId;
}
public function setRequestedLink($requestedLink)
{
$this->requestedLink = $requestedLink;
}
public function getRequestedLink()
{
return $this->requestedLink;
}
public function setSdkVersion($sdkVersion)
{
$this->sdkVersion = $sdkVersion;
}
public function getSdkVersion()
{
return $this->sdkVersion;
}
}

View File

@@ -0,0 +1,84 @@
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
class Google_Service_FirebaseDynamicLinks_GetIosReopenAttributionResponse extends Google_Model
{
public $deepLink;
public $invitationId;
public $iosMinAppVersion;
public $resolvedLink;
public $utmCampaign;
public $utmMedium;
public $utmSource;
public function setDeepLink($deepLink)
{
$this->deepLink = $deepLink;
}
public function getDeepLink()
{
return $this->deepLink;
}
public function setInvitationId($invitationId)
{
$this->invitationId = $invitationId;
}
public function getInvitationId()
{
return $this->invitationId;
}
public function setIosMinAppVersion($iosMinAppVersion)
{
$this->iosMinAppVersion = $iosMinAppVersion;
}
public function getIosMinAppVersion()
{
return $this->iosMinAppVersion;
}
public function setResolvedLink($resolvedLink)
{
$this->resolvedLink = $resolvedLink;
}
public function getResolvedLink()
{
return $this->resolvedLink;
}
public function setUtmCampaign($utmCampaign)
{
$this->utmCampaign = $utmCampaign;
}
public function getUtmCampaign()
{
return $this->utmCampaign;
}
public function setUtmMedium($utmMedium)
{
$this->utmMedium = $utmMedium;
}
public function getUtmMedium()
{
return $this->utmMedium;
}
public function setUtmSource($utmSource)
{
$this->utmSource = $utmSource;
}
public function getUtmSource()
{
return $this->utmSource;
}
}

View File

@@ -23,6 +23,7 @@ class Google_Service_FirebaseDynamicLinks_IosInfo extends Google_Model
public $iosFallbackLink;
public $iosIpadBundleId;
public $iosIpadFallbackLink;
public $iosMinimumVersion;
public function setIosAppStoreId($iosAppStoreId)
{
@@ -72,4 +73,12 @@ class Google_Service_FirebaseDynamicLinks_IosInfo extends Google_Model
{
return $this->iosIpadFallbackLink;
}
public function setIosMinimumVersion($iosMinimumVersion)
{
$this->iosMinimumVersion = $iosMinimumVersion;
}
public function getIosMinimumVersion()
{
return $this->iosMinimumVersion;
}
}

View File

@@ -35,6 +35,8 @@ class Google_Service_FirebaseDynamicLinks_Resource_V1 extends Google_Service_Res
* @param array $optParams Optional parameters.
*
* @opt_param string durationDays The span of time requested in days.
* @opt_param string sdkVersion Google SDK version. Version takes the form
* "$major.$minor.$patch"
* @return Google_Service_FirebaseDynamicLinks_DynamicLinkStats
*/
public function getLinkStats($dynamicLink, $optParams = array())
@@ -57,4 +59,18 @@ class Google_Service_FirebaseDynamicLinks_Resource_V1 extends Google_Service_Res
$params = array_merge($params, $optParams);
return $this->call('installAttribution', array($params), "Google_Service_FirebaseDynamicLinks_GetIosPostInstallAttributionResponse");
}
/**
* Get iOS reopen attribution for app universal link open deeplinking.
* (v1.reopenAttribution)
*
* @param Google_Service_FirebaseDynamicLinks_GetIosReopenAttributionRequest $postBody
* @param array $optParams Optional parameters.
* @return Google_Service_FirebaseDynamicLinks_GetIosReopenAttributionResponse
*/
public function reopenAttribution(Google_Service_FirebaseDynamicLinks_GetIosReopenAttributionRequest $postBody, $optParams = array())
{
$params = array('postBody' => $postBody);
$params = array_merge($params, $optParams);
return $this->call('reopenAttribution', array($params), "Google_Service_FirebaseDynamicLinks_GetIosReopenAttributionResponse");
}
}