class Comet::Organization
def to_hash
-
(Hash)
- The complete object as a Ruby hash
def to_hash ret = {} ret['AuditFileOptions'] = @audit_file_options ret['Branding'] = @branding ret['ConstellationRole'] = @constellation_role ret['Email'] = @email unless @experimental_options.nil? ret['ExperimentalOptions'] = @experimental_options end ret['Hosts'] = @hosts ret['Name'] = @name ret['IsSuspended'] = @is_suspended ret['PSAConfigs'] = @psaconfigs ret['RemoteStorage'] = @remote_storage ret['SoftwareBuildRole'] = @software_build_role ret['WebhookOptions'] = @webhook_options @unknown_json_fields.each do |k, v| ret[k] = v end ret end