Class: Aws::AlexaForBusiness::Types::PhoneNumber

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-alexaforbusiness/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

Instance Attribute Details

#numberString

The raw value of the phone number.

Returns:

  • (String)


3250
3251
3252
3253
3254
3255
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 3250

class PhoneNumber < Struct.new(
  :number,
  :type)
  SENSITIVE = [:number, :type]
  include Aws::Structure
end

#typeString

The type of the phone number.

Returns:

  • (String)


3250
3251
3252
3253
3254
3255
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 3250

class PhoneNumber < Struct.new(
  :number,
  :type)
  SENSITIVE = [:number, :type]
  include Aws::Structure
end