/// <summary>
 /// Initializes a new instance of the PrivateIntuneStoreRequest class.
 /// </summary>
 /// <param name="tenantId">tenant id of the intune store</param>
 public PrivateIntuneStoreRequest(IntuneTargetAudience targetAudience = default(IntuneTargetAudience), IntuneAppCategory appCategory = default(IntuneAppCategory), string tenantId = default(string))
 {
     TargetAudience = targetAudience;
     AppCategory    = appCategory;
     TenantId       = tenantId;
     CustomInit();
 }
 /// <summary>
 /// Initializes a new instance of the IntuneStoreRequest class.
 /// </summary>
 /// <param name="tenantId">tenant id of the intune store</param>
 public IntuneStoreRequest(IntuneSecretDetails secretJson = default(IntuneSecretDetails), IntuneTargetAudience targetAudience = default(IntuneTargetAudience), IntuneAppCategory appCategory = default(IntuneAppCategory), string tenantId = default(string))
 {
     SecretJson     = secretJson;
     TargetAudience = targetAudience;
     AppCategory    = appCategory;
     TenantId       = tenantId;
     CustomInit();
 }