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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  import "time"
     6  
     7  // EmbeddedSIMActivationCode undocumented
     8  type EmbeddedSIMActivationCode struct {
     9  	// Object is the base model of EmbeddedSIMActivationCode
    10  	Object
    11  	// IntegratedCircuitCardIdentifier The Integrated Circuit Card Identifier (ICCID) for this embedded SIM activation code as provided by the mobile operator.
    12  	IntegratedCircuitCardIdentifier *string `json:"integratedCircuitCardIdentifier,omitempty"`
    13  	// MatchingIdentifier The MatchingIdentifier (MatchingID) as specified in the GSMA Association SGP.22 RSP Technical Specification section 4.1.
    14  	MatchingIdentifier *string `json:"matchingIdentifier,omitempty"`
    15  	// SmdpPlusServerAddress The fully qualified domain name of the SM-DP+ server as specified in the GSM Association SPG .22 RSP Technical Specification.
    16  	SmdpPlusServerAddress *string `json:"smdpPlusServerAddress,omitempty"`
    17  }
    18  
    19  // EmbeddedSIMActivationCodePool A pool represents a group of embedded SIM activation codes.
    20  type EmbeddedSIMActivationCodePool struct {
    21  	// Entity is the base model of EmbeddedSIMActivationCodePool
    22  	Entity
    23  	// DisplayName The admin defined name of the embedded SIM activation code pool.
    24  	DisplayName *string `json:"displayName,omitempty"`
    25  	// CreatedDateTime The time the embedded SIM activation code pool was created. Generated service side.
    26  	CreatedDateTime *time.Time `json:"createdDateTime,omitempty"`
    27  	// ModifiedDateTime The time the embedded SIM activation code pool was last modified. Updated service side.
    28  	ModifiedDateTime *time.Time `json:"modifiedDateTime,omitempty"`
    29  	// ActivationCodes The activation codes which belong to this pool. This navigation property is used to post activation codes to Intune but cannot be used to read activation codes from Intune.
    30  	ActivationCodes []EmbeddedSIMActivationCode `json:"activationCodes,omitempty"`
    31  	// ActivationCodeCount The total count of activation codes which belong to this pool.
    32  	ActivationCodeCount *int `json:"activationCodeCount,omitempty"`
    33  	// Assignments undocumented
    34  	Assignments []EmbeddedSIMActivationCodePoolAssignment `json:"assignments,omitempty"`
    35  	// DeviceStates undocumented
    36  	DeviceStates []EmbeddedSIMDeviceState `json:"deviceStates,omitempty"`
    37  }
    38  
    39  // EmbeddedSIMActivationCodePoolAssignment The embedded SIM activation code pool assignment entity assigns a specific embeddedSIMActivationCodePool to an AAD device group.
    40  type EmbeddedSIMActivationCodePoolAssignment struct {
    41  	// Entity is the base model of EmbeddedSIMActivationCodePoolAssignment
    42  	Entity
    43  	// Target The type of groups targeted by the embedded SIM activation code pool.
    44  	Target *DeviceAndAppManagementAssignmentTarget `json:"target,omitempty"`
    45  }
    46  
    47  // EmbeddedSIMDeviceState Describes the embedded SIM activation code deployment state in relation to a device.
    48  type EmbeddedSIMDeviceState struct {
    49  	// Entity is the base model of EmbeddedSIMDeviceState
    50  	Entity
    51  	// CreatedDateTime The time the embedded SIM device status was created. Generated service side.
    52  	CreatedDateTime *time.Time `json:"createdDateTime,omitempty"`
    53  	// ModifiedDateTime The time the embedded SIM device status was last modified. Updated service side.
    54  	ModifiedDateTime *time.Time `json:"modifiedDateTime,omitempty"`
    55  	// LastSyncDateTime The time the embedded SIM device last checked in. Updated service side.
    56  	LastSyncDateTime *time.Time `json:"lastSyncDateTime,omitempty"`
    57  	// UniversalIntegratedCircuitCardIdentifier The Universal Integrated Circuit Card Identifier (UICCID) identifying the hardware onto which a profile is to be deployed.
    58  	UniversalIntegratedCircuitCardIdentifier *string `json:"universalIntegratedCircuitCardIdentifier,omitempty"`
    59  	// DeviceName Device name to which the subscription was provisioned e.g. DESKTOP-JOE
    60  	DeviceName *string `json:"deviceName,omitempty"`
    61  	// UserName Username which the subscription was provisioned to e.g. joe@contoso.com
    62  	UserName *string `json:"userName,omitempty"`
    63  	// State The state of the profile operation applied to the device.
    64  	State *EmbeddedSIMDeviceStateValue `json:"state,omitempty"`
    65  	// StateDetails String description of the provisioning state.
    66  	StateDetails *string `json:"stateDetails,omitempty"`
    67  }