Class: Virtuozzo::SOAP::Types::Authm::GroupType

Inherits:
Object
  • Object
show all
Defined in:
lib/virtuozzo/soap/types/authm.rb

Overview

http://www.swsoft.com/webservices/vzl/4.0.0/typesgroupType

user - Virtuozzo::SOAP::Types::Authm::GroupType::User
member_group - Virtuozzo::SOAP::Types::Authm::GroupType::Member_group
name - SOAP::SOAPString
gid - SOAP::SOAPInt

Defined Under Namespace

Classes: Member_group, User

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(user = [], member_group = [], name = nil, gid = nil) ⇒ GroupType

Returns a new instance of GroupType.



1135
1136
1137
1138
1139
1140
# File 'lib/virtuozzo/soap/types/authm.rb', line 1135

def initialize(user = [], member_group = [], name = nil, gid = nil)
  @user = user
  @member_group = member_group
  @name = name
  @gid = gid
end

Instance Attribute Details

#gidObject

Returns the value of attribute gid.



1133
1134
1135
# File 'lib/virtuozzo/soap/types/authm.rb', line 1133

def gid
  @gid
end

#member_groupObject

Returns the value of attribute member_group.



1131
1132
1133
# File 'lib/virtuozzo/soap/types/authm.rb', line 1131

def member_group
  @member_group
end

#nameObject

Returns the value of attribute name.



1132
1133
1134
# File 'lib/virtuozzo/soap/types/authm.rb', line 1132

def name
  @name
end

#userObject

Returns the value of attribute user.



1130
1131
1132
# File 'lib/virtuozzo/soap/types/authm.rb', line 1130

def user
  @user
end