github.com/yaegashi/msgraph.go@v0.1.4/beta/ModelOrganization.go (about)

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  import "time"
     6  
     7  // Organization The organization resource represents an instance of global settings and resources which operate and are provisioned at the tenant-level.
     8  type Organization struct {
     9  	// DirectoryObject is the base model of Organization
    10  	DirectoryObject
    11  	// AssignedPlans undocumented
    12  	AssignedPlans []AssignedPlan `json:"assignedPlans,omitempty"`
    13  	// BusinessPhones undocumented
    14  	BusinessPhones []string `json:"businessPhones,omitempty"`
    15  	// City undocumented
    16  	City *string `json:"city,omitempty"`
    17  	// Country undocumented
    18  	Country *string `json:"country,omitempty"`
    19  	// CountryLetterCode undocumented
    20  	CountryLetterCode *string `json:"countryLetterCode,omitempty"`
    21  	// CreatedDateTime undocumented
    22  	CreatedDateTime *time.Time `json:"createdDateTime,omitempty"`
    23  	// DisplayName undocumented
    24  	DisplayName *string `json:"displayName,omitempty"`
    25  	// IsMultipleDataLocationsForServicesEnabled undocumented
    26  	IsMultipleDataLocationsForServicesEnabled *bool `json:"isMultipleDataLocationsForServicesEnabled,omitempty"`
    27  	// MarketingNotificationEmails undocumented
    28  	MarketingNotificationEmails []string `json:"marketingNotificationEmails,omitempty"`
    29  	// OnPremisesLastSyncDateTime undocumented
    30  	OnPremisesLastSyncDateTime *time.Time `json:"onPremisesLastSyncDateTime,omitempty"`
    31  	// OnPremisesSyncEnabled undocumented
    32  	OnPremisesSyncEnabled *bool `json:"onPremisesSyncEnabled,omitempty"`
    33  	// PostalCode undocumented
    34  	PostalCode *string `json:"postalCode,omitempty"`
    35  	// PreferredLanguage undocumented
    36  	PreferredLanguage *string `json:"preferredLanguage,omitempty"`
    37  	// PrivacyProfile undocumented
    38  	PrivacyProfile *PrivacyProfile `json:"privacyProfile,omitempty"`
    39  	// ProvisionedPlans undocumented
    40  	ProvisionedPlans []ProvisionedPlan `json:"provisionedPlans,omitempty"`
    41  	// SecurityComplianceNotificationMails undocumented
    42  	SecurityComplianceNotificationMails []string `json:"securityComplianceNotificationMails,omitempty"`
    43  	// SecurityComplianceNotificationPhones undocumented
    44  	SecurityComplianceNotificationPhones []string `json:"securityComplianceNotificationPhones,omitempty"`
    45  	// State undocumented
    46  	State *string `json:"state,omitempty"`
    47  	// Street undocumented
    48  	Street *string `json:"street,omitempty"`
    49  	// TechnicalNotificationMails undocumented
    50  	TechnicalNotificationMails []string `json:"technicalNotificationMails,omitempty"`
    51  	// VerifiedDomains undocumented
    52  	VerifiedDomains []VerifiedDomain `json:"verifiedDomains,omitempty"`
    53  	// MobileDeviceManagementAuthority Mobile device management authority.
    54  	MobileDeviceManagementAuthority *MDMAuthority `json:"mobileDeviceManagementAuthority,omitempty"`
    55  	// CertificateConnectorSetting Certificate connector setting.
    56  	CertificateConnectorSetting *CertificateConnectorSetting `json:"certificateConnectorSetting,omitempty"`
    57  	// Brandings undocumented
    58  	Brandings []OrganizationalBranding `json:"brandings,omitempty"`
    59  	// CertificateBasedAuthConfiguration undocumented
    60  	CertificateBasedAuthConfiguration []CertificateBasedAuthConfiguration `json:"certificateBasedAuthConfiguration,omitempty"`
    61  	// Extensions undocumented
    62  	Extensions []Extension `json:"extensions,omitempty"`
    63  }