Automattic\WooCommerce\Internal\AddressProvider
AbstractAutomatticAddressProvider::get_jwt
Gets the JWT for the address service.
Method of the class: AbstractAutomatticAddressProvider{}
No Hooks.
Returns
String. The JWT for the address service.
Usage
$AbstractAutomatticAddressProvider = new AbstractAutomatticAddressProvider(); $AbstractAutomatticAddressProvider->get_jwt();
AbstractAutomatticAddressProvider::get_jwt() AbstractAutomatticAddressProvider::get jwt code WC 10.3.3
public function get_jwt() {
if ( null === $this->jwt ) {
$this->load_jwt();
}
return $this->jwt;
}