Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
digitalascetic/google-api-client / Entity / IGoogleApiUser.php
Size: Mime:
<?php
/**
 * Created by PhpStorm.
 * User: eduarddezacastellano
 * Date: 06/09/2018
 * Time: 17:49
 */

namespace DigitalAscetic\GoogleApiClientBundle\Entity;


interface IGoogleApiUser
{

    /**
     * @return null|string
     */
    public function getGoogleApiRefreshToken(): ?string;

    /**
     * @param string|null $google_api_refresh_token
     */
    public function setGoogleApiRefreshToken(?string $google_api_refresh_token): void;

    /**
     * @return null|string
     */
    public function getGoogleApiAccessToken(): ?string;

    /**
     * @return bool
     */
    public function isPersisted();
}