Show / Hide Table of Contents

Class AccountsResource.GetRequest

Gets the specified account. Returns NOT_FOUND if the account does not exist or if the caller does not have access rights to it.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<Account>
MyBusinessAccountManagementBaseServiceRequest<Account>
AccountsResource.GetRequest
Implements
IClientServiceRequest<Account>
IClientServiceRequest
Inherited Members
MyBusinessAccountManagementBaseServiceRequest<Account>.Xgafv
MyBusinessAccountManagementBaseServiceRequest<Account>.AccessToken
MyBusinessAccountManagementBaseServiceRequest<Account>.Alt
MyBusinessAccountManagementBaseServiceRequest<Account>.Callback
MyBusinessAccountManagementBaseServiceRequest<Account>.Fields
MyBusinessAccountManagementBaseServiceRequest<Account>.Key
MyBusinessAccountManagementBaseServiceRequest<Account>.OauthToken
MyBusinessAccountManagementBaseServiceRequest<Account>.PrettyPrint
MyBusinessAccountManagementBaseServiceRequest<Account>.QuotaUser
MyBusinessAccountManagementBaseServiceRequest<Account>.UploadType
MyBusinessAccountManagementBaseServiceRequest<Account>.UploadProtocol
ClientServiceRequest<Account>.Execute()
ClientServiceRequest<Account>.ExecuteAsStream()
ClientServiceRequest<Account>.ExecuteAsync()
ClientServiceRequest<Account>.ExecuteAsync(CancellationToken)
ClientServiceRequest<Account>.ExecuteAsStreamAsync()
ClientServiceRequest<Account>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<Account>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<Account>.GenerateRequestUri()
ClientServiceRequest<Account>.GetBody()
ClientServiceRequest<Account>.GetDefaultETagAction(String)
ClientServiceRequest<Account>.ETagAction
ClientServiceRequest<Account>.ModifyRequest
ClientServiceRequest<Account>.ValidateParameters
ClientServiceRequest<Account>.RequestParameters
ClientServiceRequest<Account>.Service
ClientServiceRequest._unsuccessfulResponseHandlers
ClientServiceRequest._exceptionHandlers
ClientServiceRequest._executeInterceptors
ClientServiceRequest.AddUnsuccessfulResponseHandler(IHttpUnsuccessfulResponseHandler)
ClientServiceRequest.AddExceptionHandler(IHttpExceptionHandler)
ClientServiceRequest.AddExecuteInterceptor(IHttpExecuteInterceptor)
ClientServiceRequest.Credential
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.MyBusinessAccountManagement.v1
Assembly: Google.Apis.MyBusinessAccountManagement.v1.dll
Syntax
public class GetRequest : MyBusinessAccountManagementBaseServiceRequest<Account>, IClientServiceRequest<Account>, IClientServiceRequest

Constructors

GetRequest(IClientService, String)

Constructs a new Get request.

Declaration
public GetRequest(IClientService service, string name)
Parameters
Type Name Description
IClientService service
System.String name

Properties

HttpMethod

Gets the HTTP method.

Declaration
public override string HttpMethod { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.MyBusinessAccountManagement.v1.Data.Account>.HttpMethod

MethodName

Gets the method name.

Declaration
public override string MethodName { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.MyBusinessAccountManagement.v1.Data.Account>.MethodName

Name

Required. The name of the account to fetch.

Declaration
[RequestParameter("name", RequestParameterType.Path)]
public virtual string Name { get; }
Property Value
Type Description
System.String

RestPath

Gets the REST path.

Declaration
public override string RestPath { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.MyBusinessAccountManagement.v1.Data.Account>.RestPath

Methods

InitParameters()

Initializes Get parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.MyBusinessAccountManagement.v1.MyBusinessAccountManagementBaseServiceRequest<Google.Apis.MyBusinessAccountManagement.v1.Data.Account>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In This Article
Back to top