FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
square
/
square
/
src
/
Models
Edit File: RegisterDomainResponseStatus.php
<?php declare(strict_types=1); namespace Square\Models; /** * The status of the domain registration. */ class RegisterDomainResponseStatus { /** * The domain is added, but not verified. */ public const PENDING = 'PENDING'; /** * The domain is added and verified. It can be used to accept Apple Pay transactions. */ public const VERIFIED = 'VERIFIED'; }
Save
Back