Class: MicrosoftGraph::Models::Organization

Inherits:
DirectoryObject show all
Includes:
MicrosoftKiotaAbstractions::Parsable
Defined in:
lib/models/organization.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DirectoryObject

#deleted_date_time, #deleted_date_time=

Methods inherited from Entity

#additional_data, #additional_data=, #id, #id=, #odata_type, #odata_type=

Constructor Details

#initializeObject

Instantiates a new organization and sets the default values.



170
171
172
173
# File 'lib/models/organization.rb', line 170

def initialize()
    super
    @odata_type = "#microsoft.graph.organization"
end

Class Method Details

.create_from_discriminator_value(parse_node) ⇒ Object

Creates a new instance of the appropriate class based on discriminator value

Parameters:

  • parse_node

    The parse node to use to read the discriminator value and create the object

Returns:

  • a organization

Raises:

  • (StandardError)


224
225
226
227
# File 'lib/models/organization.rb', line 224

def self.create_from_discriminator_value(parse_node)
    raise StandardError, 'parse_node cannot be null' if parse_node.nil?
    return Organization.new
end

Instance Method Details

#assigned_plansObject

Gets the assignedPlans property value. The collection of service plans associated with the tenant. Not nullable.

Returns:

  • a assigned_plan



95
96
97
# File 'lib/models/organization.rb', line 95

def assigned_plans
    return @assigned_plans
end

#assigned_plans=(value) ⇒ Object

Sets the assignedPlans property value. The collection of service plans associated with the tenant. Not nullable.

Parameters:

  • value

    Value to set for the assignedPlans property.

Returns:

  • a void



103
104
105
# File 'lib/models/organization.rb', line 103

def assigned_plans=(value)
    @assigned_plans = value
end

#brandingObject

Gets the branding property value. Branding for the organization. Nullable.

Returns:

  • a organizational_branding



110
111
112
# File 'lib/models/organization.rb', line 110

def branding
    return @branding
end

#branding=(value) ⇒ Object

Sets the branding property value. Branding for the organization. Nullable.

Parameters:

  • value

    Value to set for the branding property.

Returns:

  • a void



118
119
120
# File 'lib/models/organization.rb', line 118

def branding=(value)
    @branding = value
end

#business_phonesObject

Gets the businessPhones property value. Telephone number for the organization. Although this is a string collection, only one number can be set for this property.

Returns:

  • a string



125
126
127
# File 'lib/models/organization.rb', line 125

def business_phones
    return @business_phones
end

#business_phones=(value) ⇒ Object

Sets the businessPhones property value. Telephone number for the organization. Although this is a string collection, only one number can be set for this property.

Parameters:

  • value

    Value to set for the businessPhones property.

Returns:

  • a void



133
134
135
# File 'lib/models/organization.rb', line 133

def business_phones=(value)
    @business_phones = value
end

#certificate_based_auth_configurationObject

Gets the certificateBasedAuthConfiguration property value. Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection.

Returns:

  • a certificate_based_auth_configuration



140
141
142
# File 'lib/models/organization.rb', line 140

def certificate_based_auth_configuration
    return @certificate_based_auth_configuration
end

#certificate_based_auth_configuration=(value) ⇒ Object

Sets the certificateBasedAuthConfiguration property value. Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection.

Parameters:

  • value

    Value to set for the certificateBasedAuthConfiguration property.

Returns:

  • a void



148
149
150
# File 'lib/models/organization.rb', line 148

def certificate_based_auth_configuration=(value)
    @certificate_based_auth_configuration = value
end

#cityObject

Gets the city property value. City name of the address for the organization.

Returns:

  • a string



155
156
157
# File 'lib/models/organization.rb', line 155

def city
    return @city
end

#city=(value) ⇒ Object

Sets the city property value. City name of the address for the organization.

Parameters:

  • value

    Value to set for the city property.

Returns:

  • a void



163
164
165
# File 'lib/models/organization.rb', line 163

def city=(value)
    @city = value
end

#countryObject

Gets the country property value. Country/region name of the address for the organization.

Returns:

  • a string



178
179
180
# File 'lib/models/organization.rb', line 178

def country
    return @country
end

#country=(value) ⇒ Object

Sets the country property value. Country/region name of the address for the organization.

Parameters:

  • value

    Value to set for the country property.

Returns:

  • a void



186
187
188
# File 'lib/models/organization.rb', line 186

def country=(value)
    @country = value
end

#country_letter_codeObject

Gets the countryLetterCode property value. Country or region abbreviation for the organization in ISO 3166-2 format.

Returns:

  • a string



193
194
195
# File 'lib/models/organization.rb', line 193

def country_letter_code
    return @country_letter_code
end

#country_letter_code=(value) ⇒ Object

Sets the countryLetterCode property value. Country or region abbreviation for the organization in ISO 3166-2 format.

Parameters:

  • value

    Value to set for the countryLetterCode property.

Returns:

  • a void



201
202
203
# File 'lib/models/organization.rb', line 201

def country_letter_code=(value)
    @country_letter_code = value
end

#created_date_timeObject

Gets the createdDateTime property value. Timestamp of when the organization was created. The value cannot be modified and is automatically populated when the organization is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.

Returns:

  • a date_time



208
209
210
# File 'lib/models/organization.rb', line 208

def created_date_time
    return @created_date_time
end

#created_date_time=(value) ⇒ Object

Sets the createdDateTime property value. Timestamp of when the organization was created. The value cannot be modified and is automatically populated when the organization is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.

Parameters:

  • value

    Value to set for the createdDateTime property.

Returns:

  • a void



216
217
218
# File 'lib/models/organization.rb', line 216

def created_date_time=(value)
    @created_date_time = value
end

#default_usage_locationObject

Gets the defaultUsageLocation property value. Two-letter ISO 3166 country code indicating the default service usage location of an organization.

Returns:

  • a string



232
233
234
# File 'lib/models/organization.rb', line 232

def default_usage_location
    return @default_usage_location
end

#default_usage_location=(value) ⇒ Object

Sets the defaultUsageLocation property value. Two-letter ISO 3166 country code indicating the default service usage location of an organization.

Parameters:

  • value

    Value to set for the defaultUsageLocation property.

Returns:

  • a void



240
241
242
# File 'lib/models/organization.rb', line 240

def default_usage_location=(value)
    @default_usage_location = value
end

#display_nameObject

Gets the displayName property value. The display name for the tenant.

Returns:

  • a string



247
248
249
# File 'lib/models/organization.rb', line 247

def display_name
    return @display_name
end

#display_name=(value) ⇒ Object

Sets the displayName property value. The display name for the tenant.

Parameters:

  • value

    Value to set for the displayName property.

Returns:

  • a void



255
256
257
# File 'lib/models/organization.rb', line 255

def display_name=(value)
    @display_name = value
end

#extensionsObject

Gets the extensions property value. The collection of open extensions defined for the organization. Read-only. Nullable.

Returns:

  • a extension



262
263
264
# File 'lib/models/organization.rb', line 262

def extensions
    return @extensions
end

#extensions=(value) ⇒ Object

Sets the extensions property value. The collection of open extensions defined for the organization. Read-only. Nullable.

Parameters:

  • value

    Value to set for the extensions property.

Returns:

  • a void



270
271
272
# File 'lib/models/organization.rb', line 270

def extensions=(value)
    @extensions = value
end

#get_field_deserializersObject

The deserialization information for the current model

Returns:

  • a i_dictionary



277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
# File 'lib/models/organization.rb', line 277

def get_field_deserializers()
    return super.merge({
        "assignedPlans" => lambda {|n| @assigned_plans = n.get_collection_of_object_values(lambda {|pn| MicrosoftGraph::Models::AssignedPlan.create_from_discriminator_value(pn) }) },
        "branding" => lambda {|n| @branding = n.get_object_value(lambda {|pn| MicrosoftGraph::Models::OrganizationalBranding.create_from_discriminator_value(pn) }) },
        "businessPhones" => lambda {|n| @business_phones = n.get_collection_of_primitive_values(String) },
        "certificateBasedAuthConfiguration" => lambda {|n| @certificate_based_auth_configuration = n.get_collection_of_object_values(lambda {|pn| MicrosoftGraph::Models::CertificateBasedAuthConfiguration.create_from_discriminator_value(pn) }) },
        "city" => lambda {|n| @city = n.get_string_value() },
        "country" => lambda {|n| @country = n.get_string_value() },
        "countryLetterCode" => lambda {|n| @country_letter_code = n.get_string_value() },
        "createdDateTime" => lambda {|n| @created_date_time = n.get_date_time_value() },
        "defaultUsageLocation" => lambda {|n| @default_usage_location = n.get_string_value() },
        "displayName" => lambda {|n| @display_name = n.get_string_value() },
        "extensions" => lambda {|n| @extensions = n.get_collection_of_object_values(lambda {|pn| MicrosoftGraph::Models::Extension.create_from_discriminator_value(pn) }) },
        "marketingNotificationEmails" => lambda {|n| @marketing_notification_emails = n.get_collection_of_primitive_values(String) },
        "mobileDeviceManagementAuthority" => lambda {|n| @mobile_device_management_authority = n.get_enum_value(MicrosoftGraph::Models::MdmAuthority) },
        "onPremisesLastSyncDateTime" => lambda {|n| @on_premises_last_sync_date_time = n.get_date_time_value() },
        "onPremisesSyncEnabled" => lambda {|n| @on_premises_sync_enabled = n.get_boolean_value() },
        "partnerTenantType" => lambda {|n| @partner_tenant_type = n.get_enum_value(MicrosoftGraph::Models::PartnerTenantType) },
        "postalCode" => lambda {|n| @postal_code = n.get_string_value() },
        "preferredLanguage" => lambda {|n| @preferred_language = n.get_string_value() },
        "privacyProfile" => lambda {|n| @privacy_profile = n.get_object_value(lambda {|pn| MicrosoftGraph::Models::PrivacyProfile.create_from_discriminator_value(pn) }) },
        "provisionedPlans" => lambda {|n| @provisioned_plans = n.get_collection_of_object_values(lambda {|pn| MicrosoftGraph::Models::ProvisionedPlan.create_from_discriminator_value(pn) }) },
        "securityComplianceNotificationMails" => lambda {|n| @security_compliance_notification_mails = n.get_collection_of_primitive_values(String) },
        "securityComplianceNotificationPhones" => lambda {|n| @security_compliance_notification_phones = n.get_collection_of_primitive_values(String) },
        "state" => lambda {|n| @state = n.get_string_value() },
        "street" => lambda {|n| @street = n.get_string_value() },
        "technicalNotificationMails" => lambda {|n| @technical_notification_mails = n.get_collection_of_primitive_values(String) },
        "tenantType" => lambda {|n| @tenant_type = n.get_string_value() },
        "verifiedDomains" => lambda {|n| @verified_domains = n.get_collection_of_object_values(lambda {|pn| MicrosoftGraph::Models::VerifiedDomain.create_from_discriminator_value(pn) }) },
    })
end

#marketing_notification_emailsObject

Gets the marketingNotificationEmails property value. Not nullable.

Returns:

  • a string



312
313
314
# File 'lib/models/organization.rb', line 312

def marketing_notification_emails
    return @marketing_notification_emails
end

#marketing_notification_emails=(value) ⇒ Object

Sets the marketingNotificationEmails property value. Not nullable.

Parameters:

  • value

    Value to set for the marketingNotificationEmails property.

Returns:

  • a void



320
321
322
# File 'lib/models/organization.rb', line 320

def marketing_notification_emails=(value)
    @marketing_notification_emails = value
end

#mobile_device_management_authorityObject

Gets the mobileDeviceManagementAuthority property value. Mobile device management authority.

Returns:

  • a mdm_authority



327
328
329
# File 'lib/models/organization.rb', line 327

def mobile_device_management_authority
    return @mobile_device_management_authority
end

#mobile_device_management_authority=(value) ⇒ Object

Sets the mobileDeviceManagementAuthority property value. Mobile device management authority.

Parameters:

  • value

    Value to set for the mobileDeviceManagementAuthority property.

Returns:

  • a void



335
336
337
# File 'lib/models/organization.rb', line 335

def mobile_device_management_authority=(value)
    @mobile_device_management_authority = value
end

#on_premises_last_sync_date_timeObject

Gets the onPremisesLastSyncDateTime property value. The time and date at which the tenant was last synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.

Returns:

  • a date_time



342
343
344
# File 'lib/models/organization.rb', line 342

def on_premises_last_sync_date_time
    return @on_premises_last_sync_date_time
end

#on_premises_last_sync_date_time=(value) ⇒ Object

Sets the onPremisesLastSyncDateTime property value. The time and date at which the tenant was last synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.

Parameters:

  • value

    Value to set for the onPremisesLastSyncDateTime property.

Returns:

  • a void



350
351
352
# File 'lib/models/organization.rb', line 350

def on_premises_last_sync_date_time=(value)
    @on_premises_last_sync_date_time = value
end

#on_premises_sync_enabledObject

Gets the onPremisesSyncEnabled property value. true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced. Nullable. null if this object has never been synced from an on-premises directory (default).

Returns:

  • a boolean



357
358
359
# File 'lib/models/organization.rb', line 357

def on_premises_sync_enabled
    return @on_premises_sync_enabled
end

#on_premises_sync_enabled=(value) ⇒ Object

Sets the onPremisesSyncEnabled property value. true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced. Nullable. null if this object has never been synced from an on-premises directory (default).

Parameters:

  • value

    Value to set for the onPremisesSyncEnabled property.

Returns:

  • a void



365
366
367
# File 'lib/models/organization.rb', line 365

def on_premises_sync_enabled=(value)
    @on_premises_sync_enabled = value
end

#partner_tenant_typeObject

Gets the partnerTenantType property value. The type of partnership this tenant has with Microsoft. The possible values are: microsoftSupport, syndicatePartner, breadthPartner, breadthPartnerDelegatedAdmin, resellerPartnerDelegatedAdmin, valueAddedResellerPartnerDelegatedAdmin, unknownFutureValue. Nullable. For more information about the possible types, see partnerTenantType values.

Returns:

  • a partner_tenant_type



372
373
374
# File 'lib/models/organization.rb', line 372

def partner_tenant_type
    return @partner_tenant_type
end

#partner_tenant_type=(value) ⇒ Object

Sets the partnerTenantType property value. The type of partnership this tenant has with Microsoft. The possible values are: microsoftSupport, syndicatePartner, breadthPartner, breadthPartnerDelegatedAdmin, resellerPartnerDelegatedAdmin, valueAddedResellerPartnerDelegatedAdmin, unknownFutureValue. Nullable. For more information about the possible types, see partnerTenantType values.

Parameters:

  • value

    Value to set for the partnerTenantType property.

Returns:

  • a void



380
381
382
# File 'lib/models/organization.rb', line 380

def partner_tenant_type=(value)
    @partner_tenant_type = value
end

#postal_codeObject

Gets the postalCode property value. Postal code of the address for the organization.

Returns:

  • a string



387
388
389
# File 'lib/models/organization.rb', line 387

def postal_code
    return @postal_code
end

#postal_code=(value) ⇒ Object

Sets the postalCode property value. Postal code of the address for the organization.

Parameters:

  • value

    Value to set for the postalCode property.

Returns:

  • a void



395
396
397
# File 'lib/models/organization.rb', line 395

def postal_code=(value)
    @postal_code = value
end

#preferred_languageObject

Gets the preferredLanguage property value. The preferred language for the organization. Should follow ISO 639-1 Code; for example, en.

Returns:

  • a string



402
403
404
# File 'lib/models/organization.rb', line 402

def preferred_language
    return @preferred_language
end

#preferred_language=(value) ⇒ Object

Sets the preferredLanguage property value. The preferred language for the organization. Should follow ISO 639-1 Code; for example, en.

Parameters:

  • value

    Value to set for the preferredLanguage property.

Returns:

  • a void



410
411
412
# File 'lib/models/organization.rb', line 410

def preferred_language=(value)
    @preferred_language = value
end

#privacy_profileObject

Gets the privacyProfile property value. The privacy profile of an organization.

Returns:

  • a privacy_profile



417
418
419
# File 'lib/models/organization.rb', line 417

def privacy_profile
    return @privacy_profile
end

#privacy_profile=(value) ⇒ Object

Sets the privacyProfile property value. The privacy profile of an organization.

Parameters:

  • value

    Value to set for the privacyProfile property.

Returns:

  • a void



425
426
427
# File 'lib/models/organization.rb', line 425

def privacy_profile=(value)
    @privacy_profile = value
end

#provisioned_plansObject

Gets the provisionedPlans property value. Not nullable.

Returns:

  • a provisioned_plan



432
433
434
# File 'lib/models/organization.rb', line 432

def provisioned_plans
    return @provisioned_plans
end

#provisioned_plans=(value) ⇒ Object

Sets the provisionedPlans property value. Not nullable.

Parameters:

  • value

    Value to set for the provisionedPlans property.

Returns:

  • a void



440
441
442
# File 'lib/models/organization.rb', line 440

def provisioned_plans=(value)
    @provisioned_plans = value
end

#security_compliance_notification_mailsObject

Gets the securityComplianceNotificationMails property value. Not nullable.

Returns:

  • a string



447
448
449
# File 'lib/models/organization.rb', line 447

def security_compliance_notification_mails
    return @security_compliance_notification_mails
end

#security_compliance_notification_mails=(value) ⇒ Object

Sets the securityComplianceNotificationMails property value. Not nullable.

Parameters:

  • value

    Value to set for the securityComplianceNotificationMails property.

Returns:

  • a void



455
456
457
# File 'lib/models/organization.rb', line 455

def security_compliance_notification_mails=(value)
    @security_compliance_notification_mails = value
end

#security_compliance_notification_phonesObject

Gets the securityComplianceNotificationPhones property value. Not nullable.

Returns:

  • a string



462
463
464
# File 'lib/models/organization.rb', line 462

def security_compliance_notification_phones
    return @security_compliance_notification_phones
end

#security_compliance_notification_phones=(value) ⇒ Object

Sets the securityComplianceNotificationPhones property value. Not nullable.

Parameters:

  • value

    Value to set for the securityComplianceNotificationPhones property.

Returns:

  • a void



470
471
472
# File 'lib/models/organization.rb', line 470

def security_compliance_notification_phones=(value)
    @security_compliance_notification_phones = value
end

#serialize(writer) ⇒ Object

Serializes information the current object

Parameters:

  • writer

    Serialization writer to use to serialize this model

Returns:

  • a void

Raises:

  • (StandardError)


478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
# File 'lib/models/organization.rb', line 478

def serialize(writer)
    raise StandardError, 'writer cannot be null' if writer.nil?
    super
    writer.write_collection_of_object_values("assignedPlans", @assigned_plans)
    writer.write_object_value("branding", @branding)
    writer.write_collection_of_primitive_values("businessPhones", @business_phones)
    writer.write_collection_of_object_values("certificateBasedAuthConfiguration", @certificate_based_auth_configuration)
    writer.write_string_value("city", @city)
    writer.write_string_value("country", @country)
    writer.write_string_value("countryLetterCode", @country_letter_code)
    writer.write_date_time_value("createdDateTime", @created_date_time)
    writer.write_string_value("defaultUsageLocation", @default_usage_location)
    writer.write_string_value("displayName", @display_name)
    writer.write_collection_of_object_values("extensions", @extensions)
    writer.write_collection_of_primitive_values("marketingNotificationEmails", @marketing_notification_emails)
    writer.write_enum_value("mobileDeviceManagementAuthority", @mobile_device_management_authority)
    writer.write_date_time_value("onPremisesLastSyncDateTime", @on_premises_last_sync_date_time)
    writer.write_boolean_value("onPremisesSyncEnabled", @on_premises_sync_enabled)
    writer.write_enum_value("partnerTenantType", @partner_tenant_type)
    writer.write_string_value("postalCode", @postal_code)
    writer.write_string_value("preferredLanguage", @preferred_language)
    writer.write_object_value("privacyProfile", @privacy_profile)
    writer.write_collection_of_object_values("provisionedPlans", @provisioned_plans)
    writer.write_collection_of_primitive_values("securityComplianceNotificationMails", @security_compliance_notification_mails)
    writer.write_collection_of_primitive_values("securityComplianceNotificationPhones", @security_compliance_notification_phones)
    writer.write_string_value("state", @state)
    writer.write_string_value("street", @street)
    writer.write_collection_of_primitive_values("technicalNotificationMails", @technical_notification_mails)
    writer.write_string_value("tenantType", @tenant_type)
    writer.write_collection_of_object_values("verifiedDomains", @verified_domains)
end

#stateObject

Gets the state property value. State name of the address for the organization.

Returns:

  • a string



513
514
515
# File 'lib/models/organization.rb', line 513

def state
    return @state
end

#state=(value) ⇒ Object

Sets the state property value. State name of the address for the organization.

Parameters:

  • value

    Value to set for the state property.

Returns:

  • a void



521
522
523
# File 'lib/models/organization.rb', line 521

def state=(value)
    @state = value
end

#streetObject

Gets the street property value. Street name of the address for organization.

Returns:

  • a string



528
529
530
# File 'lib/models/organization.rb', line 528

def street
    return @street
end

#street=(value) ⇒ Object

Sets the street property value. Street name of the address for organization.

Parameters:

  • value

    Value to set for the street property.

Returns:

  • a void



536
537
538
# File 'lib/models/organization.rb', line 536

def street=(value)
    @street = value
end

#technical_notification_mailsObject

Gets the technicalNotificationMails property value. Not nullable.

Returns:

  • a string



543
544
545
# File 'lib/models/organization.rb', line 543

def technical_notification_mails
    return @technical_notification_mails
end

#technical_notification_mails=(value) ⇒ Object

Sets the technicalNotificationMails property value. Not nullable.

Parameters:

  • value

    Value to set for the technicalNotificationMails property.

Returns:

  • a void



551
552
553
# File 'lib/models/organization.rb', line 551

def technical_notification_mails=(value)
    @technical_notification_mails = value
end

#tenant_typeObject

Gets the tenantType property value. Not nullable. The tenant type option that was selected when the tenant was created. The possible values are: AAD - An enterprise identity access management (IAM) service that serves business-to-employee and business-to-business (B2B) scenarios. AAD B2C A customer identity access management (CIAM) service that serves business-to-consumer (B2C) scenarios.

Returns:

  • a string



558
559
560
# File 'lib/models/organization.rb', line 558

def tenant_type
    return @tenant_type
end

#tenant_type=(value) ⇒ Object

Sets the tenantType property value. Not nullable. The tenant type option that was selected when the tenant was created. The possible values are: AAD - An enterprise identity access management (IAM) service that serves business-to-employee and business-to-business (B2B) scenarios. AAD B2C A customer identity access management (CIAM) service that serves business-to-consumer (B2C) scenarios.

Parameters:

  • value

    Value to set for the tenantType property.

Returns:

  • a void



566
567
568
# File 'lib/models/organization.rb', line 566

def tenant_type=(value)
    @tenant_type = value
end

#verified_domainsObject

Gets the verifiedDomains property value. The collection of domains associated with this tenant. Not nullable.

Returns:

  • a verified_domain



573
574
575
# File 'lib/models/organization.rb', line 573

def verified_domains
    return @verified_domains
end

#verified_domains=(value) ⇒ Object

Sets the verifiedDomains property value. The collection of domains associated with this tenant. Not nullable.

Parameters:

  • value

    Value to set for the verifiedDomains property.

Returns:

  • a void



581
582
583
# File 'lib/models/organization.rb', line 581

def verified_domains=(value)
    @verified_domains = value
end