Skip to content
Spencer Varney edited this page Dec 9, 2016 · 2 revisions

New-GDriveReplyObj

SYNOPSIS

Creates a new Drive API Reply object.

SYNTAX

New-GDriveReplyObj [[-Action] <String>] [[-Author] <User>] [[-Content] <String>] [[-CreatedTime] <DateTime>]
 [[-Deleted] <Boolean>] [[-HtmlContent] <String>] [[-Id] <String>] [[-ModifiedTime] <DateTime>] [-WhatIf]
 [-Confirm]

DESCRIPTION

This provides a Cmdlet-Based approach to creating a Reply object which may be required as a parameter for some other Cmdlets in the Drive API category.

You could alternately create this object by calling New-Object -TypeName Google.Apis.Drive.v3.Data.Reply

EXAMPLES

---------- EXAMPLE 1 ----------

PS C:\> New-GDriveReplyObj

This automatically generated example serves to show the bare minimum required to call this Cmdlet.

Additional examples may be added, viewed and edited by users on the community wiki at the URL found in the related links.

PARAMETERS

-Action

The action the reply performed to the parent comment. Valid values are:- resolve- reopen

Type: String
Parameter Sets: (All)
Aliases: 

Required: False
Position: 0
Default value: 
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-Author

The user who created the reply.

Type: User
Parameter Sets: (All)
Aliases: 

Required: False
Position: 1
Default value: 
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-Content

The plain text content of the reply. This field is used for setting the content, while htmlContent should be displayed. This is required on creates if no action is specified.

Type: String
Parameter Sets: (All)
Aliases: 

Required: False
Position: 2
Default value: 
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-CreatedTime

The time at which the reply was created (RFC 3339 date-time).

Type: DateTime
Parameter Sets: (All)
Aliases: 

Required: False
Position: 3
Default value: 
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-Deleted

Whether the reply has been deleted. A deleted reply has no content.

Type: Boolean
Parameter Sets: (All)
Aliases: 

Required: False
Position: 4
Default value: 
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-HtmlContent

The content of the reply with HTML formatting.

Type: String
Parameter Sets: (All)
Aliases: 

Required: False
Position: 5
Default value: 
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-Id

The ID of the reply.

Type: String
Parameter Sets: (All)
Aliases: 

Required: False
Position: 6
Default value: 
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-ModifiedTime

The last time the reply was modified (RFC 3339 date-time).

Type: DateTime
Parameter Sets: (All)
Aliases: 

Required: False
Position: 7
Default value: 
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

INPUTS

System.String

The action the reply performed to the parent comment. Valid values are:- resolve- reopen

Google.Apis.Drive.v3.Data.User

The user who created the reply.

System.String

The plain text content of the reply. This field is used for setting the content, while htmlContent should be displayed. This is required on creates if no action is specified.

System.DateTime

The time at which the reply was created (RFC 3339 date-time).

System.Boolean

Whether the reply has been deleted. A deleted reply has no content.

System.String

The content of the reply with HTML formatting.

System.String

The ID of the reply.

System.DateTime

The last time the reply was modified (RFC 3339 date-time).

OUTPUTS

Google.Apis.Drive.v3.Data.Reply

NOTES

Part of the gShell Project, relating to the Google Drive API; see Related Links or use the -Online parameter.

RELATED LINKS

[Wiki page for this Cmdlet]

[Getting started with gShell]

Clone this wiki locally