Initial commit

This commit is contained in:
Caribana
2017-05-26 11:41:26 +02:00
commit 61c24500af
6264 changed files with 645934 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
<?php
/*
* Copyright 2016 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_FirebaseDynamicLinksAPI_AnalyticsInfo extends Google_Model
{
protected $googlePlayAnalyticsType = 'Google_Service_FirebaseDynamicLinksAPI_GooglePlayAnalytics';
protected $googlePlayAnalyticsDataType = '';
protected $itunesConnectAnalyticsType = 'Google_Service_FirebaseDynamicLinksAPI_ITunesConnectAnalytics';
protected $itunesConnectAnalyticsDataType = '';
public function setGooglePlayAnalytics(Google_Service_FirebaseDynamicLinksAPI_GooglePlayAnalytics $googlePlayAnalytics)
{
$this->googlePlayAnalytics = $googlePlayAnalytics;
}
public function getGooglePlayAnalytics()
{
return $this->googlePlayAnalytics;
}
public function setItunesConnectAnalytics(Google_Service_FirebaseDynamicLinksAPI_ITunesConnectAnalytics $itunesConnectAnalytics)
{
$this->itunesConnectAnalytics = $itunesConnectAnalytics;
}
public function getItunesConnectAnalytics()
{
return $this->itunesConnectAnalytics;
}
}

View File

@@ -0,0 +1,57 @@
<?php
/*
* Copyright 2016 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_FirebaseDynamicLinksAPI_AndroidInfo extends Google_Model
{
public $androidFallbackLink;
public $androidLink;
public $androidMinPackageVersionCode;
public $androidPackageName;
public function setAndroidFallbackLink($androidFallbackLink)
{
$this->androidFallbackLink = $androidFallbackLink;
}
public function getAndroidFallbackLink()
{
return $this->androidFallbackLink;
}
public function setAndroidLink($androidLink)
{
$this->androidLink = $androidLink;
}
public function getAndroidLink()
{
return $this->androidLink;
}
public function setAndroidMinPackageVersionCode($androidMinPackageVersionCode)
{
$this->androidMinPackageVersionCode = $androidMinPackageVersionCode;
}
public function getAndroidMinPackageVersionCode()
{
return $this->androidMinPackageVersionCode;
}
public function setAndroidPackageName($androidPackageName)
{
$this->androidPackageName = $androidPackageName;
}
public function getAndroidPackageName()
{
return $this->androidPackageName;
}
}

View File

@@ -0,0 +1,50 @@
<?php
/*
* Copyright 2016 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_FirebaseDynamicLinksAPI_CreateShortDynamicLinkRequest extends Google_Model
{
protected $dynamicLinkInfoType = 'Google_Service_FirebaseDynamicLinksAPI_DynamicLinkInfo';
protected $dynamicLinkInfoDataType = '';
public $longDynamicLink;
protected $suffixType = 'Google_Service_FirebaseDynamicLinksAPI_Suffix';
protected $suffixDataType = '';
public function setDynamicLinkInfo(Google_Service_FirebaseDynamicLinksAPI_DynamicLinkInfo $dynamicLinkInfo)
{
$this->dynamicLinkInfo = $dynamicLinkInfo;
}
public function getDynamicLinkInfo()
{
return $this->dynamicLinkInfo;
}
public function setLongDynamicLink($longDynamicLink)
{
$this->longDynamicLink = $longDynamicLink;
}
public function getLongDynamicLink()
{
return $this->longDynamicLink;
}
public function setSuffix(Google_Service_FirebaseDynamicLinksAPI_Suffix $suffix)
{
$this->suffix = $suffix;
}
public function getSuffix()
{
return $this->suffix;
}
}

View File

@@ -0,0 +1,50 @@
<?php
/*
* Copyright 2016 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_FirebaseDynamicLinksAPI_CreateShortDynamicLinkResponse extends Google_Collection
{
protected $collection_key = 'warning';
public $previewLink;
public $shortLink;
protected $warningType = 'Google_Service_FirebaseDynamicLinksAPI_DynamicLinkWarning';
protected $warningDataType = 'array';
public function setPreviewLink($previewLink)
{
$this->previewLink = $previewLink;
}
public function getPreviewLink()
{
return $this->previewLink;
}
public function setShortLink($shortLink)
{
$this->shortLink = $shortLink;
}
public function getShortLink()
{
return $this->shortLink;
}
public function setWarning($warning)
{
$this->warning = $warning;
}
public function getWarning()
{
return $this->warning;
}
}

View File

@@ -0,0 +1,88 @@
<?php
/*
* Copyright 2016 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_FirebaseDynamicLinksAPI_DynamicLinkInfo extends Google_Model
{
protected $analyticsInfoType = 'Google_Service_FirebaseDynamicLinksAPI_AnalyticsInfo';
protected $analyticsInfoDataType = '';
protected $androidInfoType = 'Google_Service_FirebaseDynamicLinksAPI_AndroidInfo';
protected $androidInfoDataType = '';
public $dynamicLinkDomain;
protected $iosInfoType = 'Google_Service_FirebaseDynamicLinksAPI_IosInfo';
protected $iosInfoDataType = '';
public $isAd;
public $link;
protected $socialMetaTagInfoType = 'Google_Service_FirebaseDynamicLinksAPI_SocialMetaTagInfo';
protected $socialMetaTagInfoDataType = '';
public function setAnalyticsInfo(Google_Service_FirebaseDynamicLinksAPI_AnalyticsInfo $analyticsInfo)
{
$this->analyticsInfo = $analyticsInfo;
}
public function getAnalyticsInfo()
{
return $this->analyticsInfo;
}
public function setAndroidInfo(Google_Service_FirebaseDynamicLinksAPI_AndroidInfo $androidInfo)
{
$this->androidInfo = $androidInfo;
}
public function getAndroidInfo()
{
return $this->androidInfo;
}
public function setDynamicLinkDomain($dynamicLinkDomain)
{
$this->dynamicLinkDomain = $dynamicLinkDomain;
}
public function getDynamicLinkDomain()
{
return $this->dynamicLinkDomain;
}
public function setIosInfo(Google_Service_FirebaseDynamicLinksAPI_IosInfo $iosInfo)
{
$this->iosInfo = $iosInfo;
}
public function getIosInfo()
{
return $this->iosInfo;
}
public function setIsAd($isAd)
{
$this->isAd = $isAd;
}
public function getIsAd()
{
return $this->isAd;
}
public function setLink($link)
{
$this->link = $link;
}
public function getLink()
{
return $this->link;
}
public function setSocialMetaTagInfo(Google_Service_FirebaseDynamicLinksAPI_SocialMetaTagInfo $socialMetaTagInfo)
{
$this->socialMetaTagInfo = $socialMetaTagInfo;
}
public function getSocialMetaTagInfo()
{
return $this->socialMetaTagInfo;
}
}

View File

@@ -0,0 +1,39 @@
<?php
/*
* Copyright 2016 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_FirebaseDynamicLinksAPI_DynamicLinkWarning extends Google_Model
{
public $warningCode;
public $warningMessage;
public function setWarningCode($warningCode)
{
$this->warningCode = $warningCode;
}
public function getWarningCode()
{
return $this->warningCode;
}
public function setWarningMessage($warningMessage)
{
$this->warningMessage = $warningMessage;
}
public function getWarningMessage()
{
return $this->warningMessage;
}
}

View File

@@ -0,0 +1,75 @@
<?php
/*
* Copyright 2016 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_FirebaseDynamicLinksAPI_GooglePlayAnalytics extends Google_Model
{
public $gclid;
public $utmCampaign;
public $utmContent;
public $utmMedium;
public $utmSource;
public $utmTerm;
public function setGclid($gclid)
{
$this->gclid = $gclid;
}
public function getGclid()
{
return $this->gclid;
}
public function setUtmCampaign($utmCampaign)
{
$this->utmCampaign = $utmCampaign;
}
public function getUtmCampaign()
{
return $this->utmCampaign;
}
public function setUtmContent($utmContent)
{
$this->utmContent = $utmContent;
}
public function getUtmContent()
{
return $this->utmContent;
}
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;
}
public function setUtmTerm($utmTerm)
{
$this->utmTerm = $utmTerm;
}
public function getUtmTerm()
{
return $this->utmTerm;
}
}

View File

@@ -0,0 +1,57 @@
<?php
/*
* Copyright 2016 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_FirebaseDynamicLinksAPI_ITunesConnectAnalytics extends Google_Model
{
public $at;
public $ct;
public $mt;
public $pt;
public function setAt($at)
{
$this->at = $at;
}
public function getAt()
{
return $this->at;
}
public function setCt($ct)
{
$this->ct = $ct;
}
public function getCt()
{
return $this->ct;
}
public function setMt($mt)
{
$this->mt = $mt;
}
public function getMt()
{
return $this->mt;
}
public function setPt($pt)
{
$this->pt = $pt;
}
public function getPt()
{
return $this->pt;
}
}

View File

@@ -0,0 +1,75 @@
<?php
/*
* Copyright 2016 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_FirebaseDynamicLinksAPI_IosInfo extends Google_Model
{
public $iosAppStoreId;
public $iosBundleId;
public $iosCustomScheme;
public $iosFallbackLink;
public $iosIpadBundleId;
public $iosIpadFallbackLink;
public function setIosAppStoreId($iosAppStoreId)
{
$this->iosAppStoreId = $iosAppStoreId;
}
public function getIosAppStoreId()
{
return $this->iosAppStoreId;
}
public function setIosBundleId($iosBundleId)
{
$this->iosBundleId = $iosBundleId;
}
public function getIosBundleId()
{
return $this->iosBundleId;
}
public function setIosCustomScheme($iosCustomScheme)
{
$this->iosCustomScheme = $iosCustomScheme;
}
public function getIosCustomScheme()
{
return $this->iosCustomScheme;
}
public function setIosFallbackLink($iosFallbackLink)
{
$this->iosFallbackLink = $iosFallbackLink;
}
public function getIosFallbackLink()
{
return $this->iosFallbackLink;
}
public function setIosIpadBundleId($iosIpadBundleId)
{
$this->iosIpadBundleId = $iosIpadBundleId;
}
public function getIosIpadBundleId()
{
return $this->iosIpadBundleId;
}
public function setIosIpadFallbackLink($iosIpadFallbackLink)
{
$this->iosIpadFallbackLink = $iosIpadFallbackLink;
}
public function getIosIpadFallbackLink()
{
return $this->iosIpadFallbackLink;
}
}

View File

@@ -0,0 +1,49 @@
<?php
/*
* Copyright 2016 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.
*/
/**
* The "shortDynamicLinks" collection of methods.
* Typical usage is:
* <code>
* $firebasedynamiclinksService = new Google_Service_FirebaseDynamicLinksAPI(...);
* $shortDynamicLinks = $firebasedynamiclinksService->shortDynamicLinks;
* </code>
*/
class Google_Service_FirebaseDynamicLinksAPI_Resource_ShortDynamicLinks extends Google_Service_Resource
{
/**
* Creates a short Dynamic Link given either a valid long Dynamic Link or
* details such as Dynamic Link domain, Android and iOS app information. The
* created short Dynamic Link will not expire.
*
* Repeated calls with the same long Dynamic Link or Dynamic Link information
* will produce the same short Dynamic Link.
*
* The Dynamic Link domain in the request must be owned by requester's Firebase
* project. (shortDynamicLinks.create)
*
* @param Google_Service_FirebaseDynamicLinksAPI_CreateShortDynamicLinkRequest $postBody
* @param array $optParams Optional parameters.
* @return Google_Service_FirebaseDynamicLinksAPI_CreateShortDynamicLinkResponse
*/
public function create(Google_Service_FirebaseDynamicLinksAPI_CreateShortDynamicLinkRequest $postBody, $optParams = array())
{
$params = array('postBody' => $postBody);
$params = array_merge($params, $optParams);
return $this->call('create', array($params), "Google_Service_FirebaseDynamicLinksAPI_CreateShortDynamicLinkResponse");
}
}

View File

@@ -0,0 +1,48 @@
<?php
/*
* Copyright 2016 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_FirebaseDynamicLinksAPI_SocialMetaTagInfo extends Google_Model
{
public $socialDescription;
public $socialImageLink;
public $socialTitle;
public function setSocialDescription($socialDescription)
{
$this->socialDescription = $socialDescription;
}
public function getSocialDescription()
{
return $this->socialDescription;
}
public function setSocialImageLink($socialImageLink)
{
$this->socialImageLink = $socialImageLink;
}
public function getSocialImageLink()
{
return $this->socialImageLink;
}
public function setSocialTitle($socialTitle)
{
$this->socialTitle = $socialTitle;
}
public function getSocialTitle()
{
return $this->socialTitle;
}
}

View File

@@ -0,0 +1,30 @@
<?php
/*
* Copyright 2016 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_FirebaseDynamicLinksAPI_Suffix extends Google_Model
{
public $option;
public function setOption($option)
{
$this->option = $option;
}
public function getOption()
{
return $this->option;
}
}