Class: Aws::AlexaForBusiness::Types::PhoneNumber
- Inherits:
-
Struct
- Object
- Struct
- Aws::AlexaForBusiness::Types::PhoneNumber
- Defined in:
- gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb
Overview
Note:
When making an API call, you may pass PhoneNumber data as a hash:
{
number: "RawPhoneNumber", # required
type: "MOBILE", # required, accepts MOBILE, WORK, HOME
}
The phone number for the contact containing the raw number and phone number type.
Constant Summary collapse
- SENSITIVE =
[:number, :type]
Instance Attribute Summary collapse
-
#number ⇒ String
The raw value of the phone number.
-
#type ⇒ String
The type of the phone number.
Instance Attribute Details
#number ⇒ String
The raw value of the phone number.
3961 3962 3963 3964 3965 3966 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 3961 class PhoneNumber < Struct.new( :number, :type) SENSITIVE = [:number, :type] include Aws::Structure end |
#type ⇒ String
The type of the phone number.
3961 3962 3963 3964 3965 3966 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 3961 class PhoneNumber < Struct.new( :number, :type) SENSITIVE = [:number, :type] include Aws::Structure end |