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.



1985
1986
1987
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1985

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)


1961
1962
1963
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1961

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)


1967
1968
1969
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1967

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)


1972
1973
1974
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1972

def id
  @id
end

#invalid_reasonString

Reason for the error. Corresponds to the JSON property invalidReason

Returns:

  • (String)


1977
1978
1979
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1977

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)


1983
1984
1985
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1983

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1990
1991
1992
1993
1994
1995
1996
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1990

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