Class: AdCenterWrapper::AccountInfo

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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

#idObject

Returns the value of attribute id.



3940
3941
3942
# File 'lib/adcenter_wrapper_entities.rb', line 3940

def id
  @id
end

#nameObject

Returns the value of attribute name.



3941
3942
3943
# File 'lib/adcenter_wrapper_entities.rb', line 3941

def name
  @name
end

#numberObject

Returns the value of attribute number.



3942
3943
3944
# File 'lib/adcenter_wrapper_entities.rb', line 3942

def number
  @number
end

#statusObject

Returns the value of attribute status.



3943
3944
3945
# File 'lib/adcenter_wrapper_entities.rb', line 3943

def status
  @status
end