Class SharingAllowlistListResponse
The sharing allowlist list response object
Inherited Members
Namespace: Dropbox.Api.Team
Assembly: Dropbox.Api.dll
Syntax
public class SharingAllowlistListResponse
Constructors
View SourceSharingAllowlistListResponse(IEnumerable<string>, IEnumerable<string>, string, bool)
Initializes a new instance of the SharingAllowlistListResponse class.
Declaration
public SharingAllowlistListResponse(IEnumerable<string> domains, IEnumerable<string> emails, string cursor = "", bool hasMore = false)
Parameters
| Type | Name | Description |
|---|---|---|
| IEnumerable<string> | domains | List of domains represented by valid string representation (RFC-1034/5). |
| IEnumerable<string> | emails | List of emails represented by valid string representation (RFC-5322/822). |
| string | cursor | If this is nonempty, there are more entries that can be fetched with SharingAllowlistListContinueAsync(SharingAllowlistListContinueArg). |
| bool | hasMore | if true indicates that more entries can be fetched with SharingAllowlistListContinueAsync(SharingAllowlistListContinueArg). |
Properties
View SourceCursor
If this is nonempty, there are more entries that can be fetched with SharingAllowlistListContinueAsync(SharingAllowlistListContinueArg).
Declaration
public string Cursor { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |
Domains
List of domains represented by valid string representation (RFC-1034/5).
Declaration
public IList<string> Domains { get; protected set; }
Property Value
| Type | Description |
|---|---|
| IList<string> |
Emails
List of emails represented by valid string representation (RFC-5322/822).
Declaration
public IList<string> Emails { get; protected set; }
Property Value
| Type | Description |
|---|---|
| IList<string> |
HasMore
if true indicates that more entries can be fetched with SharingAllowlistListContinueAsync(SharingAllowlistListContinueArg).
Declaration
public bool HasMore { get; protected set; }
Property Value
| Type | Description |
|---|---|
| bool |