Interface IRecycledSiteCollection
Defines a site collection living in the tenant's recyle bin
Namespace: PnP.Core.Admin.Model.SharePoint
Assembly: PnP.Core.Admin.dll
Syntax
public interface IRecycledSiteCollection
  
Defines a site collection living in the tenant's recyle bin
public interface IRecycledSiteCollection
  The user that created this site collection
string CreatedBy { get; }
  | 
        System.String
         
  | 
    
The user that deleted this site collection
string DeletedBy { get; }
  | 
        System.String
         
  | 
    
The id of the connected Microsoft 365 group
Guid GroupId { get; }
  | 
        Guid
         
  | 
    
The id of the site collection
Guid Id { get; }
  | 
        Guid
         
  | 
    
Name of the site collection
string Name { get; }
  | 
        System.String
         
  | 
    
Returns the email address of teh site collection owner
string SiteOwnerEmail { get; }
  | 
        System.String
         
  | 
    
Returns the name of the site collection owner
string SiteOwnerName { get; }
  | 
        System.String
         
  | 
    
The storage quota in bytes for this site collection
long StorageQuota { get; }
  | 
        System.Int64
         
  | 
    
The storage quota used for this site collection
long StorageUsed { get; }
  | 
        System.Int64
         
  | 
    
The name of the applied template
string TemplateName { get; }
  | 
        System.String
         
  | 
    
Date time when this site collection was created
DateTime TimeCreated { get; }
  | 
        DateTime
         
  | 
    
Date time when this site collection was deleted
DateTime TimeDeleted { get; }
  | 
        DateTime
         
  | 
    
The URL of the site collection
Uri Url { get; }
  | 
        Uri
         
  |