Class CoursesResource.StudentGroupsResource.StudentGroupMembersResource.DeleteRequest
Deletes a student group member. This method returns the following error codes: * PERMISSION_DENIED
if the requesting user is not permitted to delete the requested student group member or for access
errors. * NOT_FOUND if the student group member does not exist or the user does not have access to
the student group.
Inheritance
CoursesResource.StudentGroupsResource.StudentGroupMembersResource.DeleteRequest
Inherited Members
Namespace: Google.Apis.Classroom.v1
Assembly: Google.Apis.Classroom.v1.dll
Syntax
public class CoursesResource.StudentGroupsResource.StudentGroupMembersResource.DeleteRequest : ClassroomBaseServiceRequest<Empty>, IClientServiceRequest<Empty>, IClientServiceRequest
Constructors
DeleteRequest(IClientService, string, string, string)
Constructs a new Delete request.
Declaration
public DeleteRequest(IClientService service, string courseId, string studentGroupId, string userId)
Parameters
| Type | Name | Description |
|---|---|---|
| IClientService | service | |
| string | courseId | |
| string | studentGroupId | |
| string | userId |
Properties
CourseId
Required. The identifier of the course containing the relevant student group.
Declaration
[RequestParameter("courseId", RequestParameterType.Path)]
public virtual string CourseId { get; }
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
RestPath
Gets the REST path.
Declaration
public override string RestPath { get; }
Property Value
| Type | Description |
|---|---|
| string |
Overrides
StudentGroupId
Required. The identifier of the student group containing the student group member to delete.
Declaration
[RequestParameter("studentGroupId", RequestParameterType.Path)]
public virtual string StudentGroupId { get; }
Property Value
| Type | Description |
|---|---|
| string |
UserId
Required. The identifier of the student group member to delete.
Declaration
[RequestParameter("userId", RequestParameterType.Path)]
public virtual string UserId { get; }
Property Value
| Type | Description |
|---|---|
| string |
Methods
InitParameters()
Initializes Delete parameter list.
Declaration
protected override void InitParameters()