Class: AdCenterWrapper::AccountInfo
- Inherits:
-
Object
- Object
- AdCenterWrapper::AccountInfo
- Defined in:
- lib/adcenter_wrapper_entities.rb
Overview
https://adcenter.microsoft.com/api/customermanagement/EntitiesAccountInfo
id - SOAP::SOAPLong
name - SOAP::SOAPString
number - SOAP::SOAPString
status - AdCenterWrapper::AccountLifeCycleStatus
Instance Attribute Summary collapse
-
#id ⇒ Object
Returns the value of attribute id.
-
#name ⇒ Object
Returns the value of attribute name.
-
#number ⇒ Object
Returns the value of attribute number.
-
#status ⇒ Object
Returns the value of attribute status.
Instance Method Summary collapse
-
#initialize(id = nil, name = nil, number = nil, status = nil) ⇒ AccountInfo
constructor
A new instance of AccountInfo.
Constructor Details
#initialize(id = nil, name = nil, number = nil, status = nil) ⇒ AccountInfo
Returns a new instance of AccountInfo.
3945 3946 3947 3948 3949 3950 |
# File 'lib/adcenter_wrapper_entities.rb', line 3945 def initialize(id = nil, name = nil, number = nil, status = nil) @id = id @name = name @number = number @status = status end |
Instance Attribute Details
#id ⇒ Object
Returns the value of attribute id.
3940 3941 3942 |
# File 'lib/adcenter_wrapper_entities.rb', line 3940 def id @id end |
#name ⇒ Object
Returns the value of attribute name.
3941 3942 3943 |
# File 'lib/adcenter_wrapper_entities.rb', line 3941 def name @name end |
#number ⇒ Object
Returns the value of attribute number.
3942 3943 3944 |
# File 'lib/adcenter_wrapper_entities.rb', line 3942 def number @number end |
#status ⇒ Object
Returns the value of attribute status.
3943 3944 3945 |
# File 'lib/adcenter_wrapper_entities.rb', line 3943 def status @status end |