Class: Aws::AlexaForBusiness::Types::PhoneNumber
- Inherits:
-
Struct
- Object
- Struct
- Aws::AlexaForBusiness::Types::PhoneNumber
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-alexaforbusiness/types.rb
Overview
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.
3250 3251 3252 3253 3254 3255 |
# File 'lib/aws-sdk-alexaforbusiness/types.rb', line 3250 class PhoneNumber < Struct.new( :number, :type) SENSITIVE = [:number, :type] include Aws::Structure end |
#type ⇒ String
The type of the phone number.
3250 3251 3252 3253 3254 3255 |
# File 'lib/aws-sdk-alexaforbusiness/types.rb', line 3250 class PhoneNumber < Struct.new( :number, :type) SENSITIVE = [:number, :type] include Aws::Structure end |