VerifyAddressReceipt¶
-
class
oci.osp_gateway.models.
VerifyAddressReceipt
(**kwargs)¶ Bases:
object
Address verficiation result
Attributes
QUALITY_AVERAGE
A constant which can be used with the quality property of a VerifyAddressReceipt. QUALITY_BAD
A constant which can be used with the quality property of a VerifyAddressReceipt. QUALITY_EXCELLENT
A constant which can be used with the quality property of a VerifyAddressReceipt. QUALITY_GOOD
A constant which can be used with the quality property of a VerifyAddressReceipt. QUALITY_POOR
A constant which can be used with the quality property of a VerifyAddressReceipt. VERIFICATION_CODE_AMBIGUOUS
A constant which can be used with the verification_code property of a VerifyAddressReceipt. VERIFICATION_CODE_PARTIALLY_VERIFIED
A constant which can be used with the verification_code property of a VerifyAddressReceipt. VERIFICATION_CODE_REVERTED
A constant which can be used with the verification_code property of a VerifyAddressReceipt. VERIFICATION_CODE_UNVERIFIED
A constant which can be used with the verification_code property of a VerifyAddressReceipt. VERIFICATION_CODE_VERIFIED
A constant which can be used with the verification_code property of a VerifyAddressReceipt. address
[Required] Gets the address of this VerifyAddressReceipt. quality
[Required] Gets the quality of this VerifyAddressReceipt. verification_code
[Required] Gets the verification_code of this VerifyAddressReceipt. Methods
__init__
(**kwargs)Initializes a new VerifyAddressReceipt object with values from keyword arguments. -
QUALITY_AVERAGE
= 'AVERAGE'¶ A constant which can be used with the quality property of a VerifyAddressReceipt. This constant has a value of “AVERAGE”
-
QUALITY_BAD
= 'BAD'¶ A constant which can be used with the quality property of a VerifyAddressReceipt. This constant has a value of “BAD”
-
QUALITY_EXCELLENT
= 'EXCELLENT'¶ A constant which can be used with the quality property of a VerifyAddressReceipt. This constant has a value of “EXCELLENT”
-
QUALITY_GOOD
= 'GOOD'¶ A constant which can be used with the quality property of a VerifyAddressReceipt. This constant has a value of “GOOD”
-
QUALITY_POOR
= 'POOR'¶ A constant which can be used with the quality property of a VerifyAddressReceipt. This constant has a value of “POOR”
-
VERIFICATION_CODE_AMBIGUOUS
= 'AMBIGUOUS'¶ A constant which can be used with the verification_code property of a VerifyAddressReceipt. This constant has a value of “AMBIGUOUS”
-
VERIFICATION_CODE_PARTIALLY_VERIFIED
= 'PARTIALLY_VERIFIED'¶ A constant which can be used with the verification_code property of a VerifyAddressReceipt. This constant has a value of “PARTIALLY_VERIFIED”
-
VERIFICATION_CODE_REVERTED
= 'REVERTED'¶ A constant which can be used with the verification_code property of a VerifyAddressReceipt. This constant has a value of “REVERTED”
-
VERIFICATION_CODE_UNVERIFIED
= 'UNVERIFIED'¶ A constant which can be used with the verification_code property of a VerifyAddressReceipt. This constant has a value of “UNVERIFIED”
-
VERIFICATION_CODE_VERIFIED
= 'VERIFIED'¶ A constant which can be used with the verification_code property of a VerifyAddressReceipt. This constant has a value of “VERIFIED”
-
__init__
(**kwargs)¶ Initializes a new VerifyAddressReceipt object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - address (oci.osp_gateway.models.Address) – The value to assign to the address property of this VerifyAddressReceipt.
- quality (str) – The value to assign to the quality property of this VerifyAddressReceipt. Allowed values for this property are: “EXCELLENT”, “GOOD”, “AVERAGE”, “POOR”, “BAD”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
- verification_code (str) – The value to assign to the verification_code property of this VerifyAddressReceipt. Allowed values for this property are: “VERIFIED”, “PARTIALLY_VERIFIED”, “AMBIGUOUS”, “REVERTED”, “UNVERIFIED”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
-
address
¶ [Required] Gets the address of this VerifyAddressReceipt.
Returns: The address of this VerifyAddressReceipt. Return type: oci.osp_gateway.models.Address
-
quality
¶ [Required] Gets the quality of this VerifyAddressReceipt. Address quality type.
Allowed values for this property are: “EXCELLENT”, “GOOD”, “AVERAGE”, “POOR”, “BAD”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The quality of this VerifyAddressReceipt. Return type: str
-
verification_code
¶ [Required] Gets the verification_code of this VerifyAddressReceipt. Address verification code.
Allowed values for this property are: “VERIFIED”, “PARTIALLY_VERIFIED”, “AMBIGUOUS”, “REVERTED”, “UNVERIFIED”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The verification_code of this VerifyAddressReceipt. Return type: str
-