Class: Google::Apis::AlertcenterV1beta1::TransferError

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/alertcenter_v1beta1/classes.rb,
lib/google/apis/alertcenter_v1beta1/representations.rb,
lib/google/apis/alertcenter_v1beta1/representations.rb

Overview

Details for an invalid transfer or forward.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ TransferError

Returns a new instance of TransferError.



2238
2239
2240
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2238

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#emailString

User's email address. This may be unavailable if the entity was deleted. Corresponds to the JSON property email

Returns:

  • (String)


2214
2215
2216
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2214

def email
  @email
end

#entity_typeString

Type of entity being transferred to. For ring group members, this should always be USER. Corresponds to the JSON property entityType

Returns:

  • (String)


2220
2221
2222
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2220

def entity_type
  @entity_type
end

#idString

Ring group or auto attendant ID. Not set for users. Corresponds to the JSON property id

Returns:

  • (String)


2225
2226
2227
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2225

def id
  @id
end

#invalid_reasonString

Reason for the error. Corresponds to the JSON property invalidReason

Returns:

  • (String)


2230
2231
2232
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2230

def invalid_reason
  @invalid_reason
end

#nameString

User's full name, or the ring group / auto attendant name. This may be unavailable if the entity was deleted. Corresponds to the JSON property name

Returns:

  • (String)


2236
2237
2238
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2236

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2243
2244
2245
2246
2247
2248
2249
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2243

def update!(**args)
  @email = args[:email] if args.key?(:email)
  @entity_type = args[:entity_type] if args.key?(:entity_type)
  @id = args[:id] if args.key?(:id)
  @invalid_reason = args[:invalid_reason] if args.key?(:invalid_reason)
  @name = args[:name] if args.key?(:name)
end