Class: Aws::Invoicing::Types::Contact

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-invoicing/lib/aws-sdk-invoicing/types.rb

Overview

Represents contact information for a person or role associated with the procurement portal preference.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#emailString

The email address of the contact person or role.

Returns:

  • (String)


144
145
146
147
148
149
# File 'gems/aws-sdk-invoicing/lib/aws-sdk-invoicing/types.rb', line 144

class Contact < Struct.new(
  :name,
  :email)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the contact person or role.

Returns:

  • (String)


144
145
146
147
148
149
# File 'gems/aws-sdk-invoicing/lib/aws-sdk-invoicing/types.rb', line 144

class Contact < Struct.new(
  :name,
  :email)
  SENSITIVE = []
  include Aws::Structure
end