Class AccountsResource.ListRequest
Lists all of the accounts for the authenticated user. This includes all accounts that the user owns, as well as any accounts for which the user has management rights.
Inheritance
Inherited Members
Namespace: Google.Apis.MyBusinessAccountManagement.v1
Assembly: Google.Apis.MyBusinessAccountManagement.v1.dll
Syntax
public class AccountsResource.ListRequest : MyBusinessAccountManagementBaseServiceRequest<ListAccountsResponse>, IClientServiceRequest<ListAccountsResponse>, IClientServiceRequest
Constructors
ListRequest(IClientService)
Constructs a new List request.
Declaration
public ListRequest(IClientService service)
Parameters
Type | Name | Description |
---|---|---|
IClientService | service |
Properties
Filter
Optional. A filter constraining the accounts to return. The response includes only entries that match
the filter. If filter
is empty, then no constraints are applied and all accounts (paginated) are
retrieved for the requested account. For example, a request with the filter type=USER_GROUP
will only
return user groups. The type
field is the only supported filter.
Declaration
[RequestParameter("filter", RequestParameterType.Query)]
public virtual string Filter { get; set; }
Property Value
Type | Description |
---|---|
string |
HttpMethod
Gets the HTTP method.
Declaration
public override string HttpMethod { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
MethodName
Gets the method name.
Declaration
public override string MethodName { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
PageSize
Optional. How many accounts to fetch per page. The default and maximum is 20.
Declaration
[RequestParameter("pageSize", RequestParameterType.Query)]
public virtual int? PageSize { get; set; }
Property Value
Type | Description |
---|---|
int? |
PageToken
Optional. If specified, the next page of accounts is retrieved. The pageToken
is returned when a call
to accounts.list
returns more results than can fit into the requested page size.
Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
Type | Description |
---|---|
string |
ParentAccount
Optional. The resource name of the account for which the list of directly accessible accounts is to be
retrieved. This only makes sense for Organizations and User Groups. If empty, will return ListAccounts
for the authenticated user. accounts/{account_id}
.
Declaration
[RequestParameter("parentAccount", RequestParameterType.Query)]
public virtual string ParentAccount { get; set; }
Property Value
Type | Description |
---|---|
string |
RestPath
Gets the REST path.
Declaration
public override string RestPath { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
Methods
InitParameters()
Initializes List parameter list.
Declaration
protected override void InitParameters()