github.com/yaegashi/msgraph.go@v0.1.4/v1.0/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  	// MarketingNotificationEmails undocumented
    26  	MarketingNotificationEmails []string `json:"marketingNotificationEmails,omitempty"`
    27  	// OnPremisesLastSyncDateTime undocumented
    28  	OnPremisesLastSyncDateTime *time.Time `json:"onPremisesLastSyncDateTime,omitempty"`
    29  	// OnPremisesSyncEnabled undocumented
    30  	OnPremisesSyncEnabled *bool `json:"onPremisesSyncEnabled,omitempty"`
    31  	// PostalCode undocumented
    32  	PostalCode *string `json:"postalCode,omitempty"`
    33  	// PreferredLanguage undocumented
    34  	PreferredLanguage *string `json:"preferredLanguage,omitempty"`
    35  	// PrivacyProfile undocumented
    36  	PrivacyProfile *PrivacyProfile `json:"privacyProfile,omitempty"`
    37  	// ProvisionedPlans undocumented
    38  	ProvisionedPlans []ProvisionedPlan `json:"provisionedPlans,omitempty"`
    39  	// SecurityComplianceNotificationMails undocumented
    40  	SecurityComplianceNotificationMails []string `json:"securityComplianceNotificationMails,omitempty"`
    41  	// SecurityComplianceNotificationPhones undocumented
    42  	SecurityComplianceNotificationPhones []string `json:"securityComplianceNotificationPhones,omitempty"`
    43  	// State undocumented
    44  	State *string `json:"state,omitempty"`
    45  	// Street undocumented
    46  	Street *string `json:"street,omitempty"`
    47  	// TechnicalNotificationMails undocumented
    48  	TechnicalNotificationMails []string `json:"technicalNotificationMails,omitempty"`
    49  	// VerifiedDomains undocumented
    50  	VerifiedDomains []VerifiedDomain `json:"verifiedDomains,omitempty"`
    51  	// MobileDeviceManagementAuthority Mobile device management authority.
    52  	MobileDeviceManagementAuthority *MDMAuthority `json:"mobileDeviceManagementAuthority,omitempty"`
    53  	// CertificateBasedAuthConfiguration undocumented
    54  	CertificateBasedAuthConfiguration []CertificateBasedAuthConfiguration `json:"certificateBasedAuthConfiguration,omitempty"`
    55  	// Extensions undocumented
    56  	Extensions []Extension `json:"extensions,omitempty"`
    57  }