Interface IParameter
Represents a parameter for a method.
Namespace: Google.Apis.Discovery
Assembly: Google.Apis.Core.dll
Syntax
public interface IParameter
Properties
DefaultValue
Gets the default value of this parameter.
Declaration
string DefaultValue { get; }
Property Value
Type | Description |
---|---|
System.String |
IsRequired
Gets an indication whether this parameter is optional or required.
Declaration
bool IsRequired { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
Name
Gets the name of the parameter.
Declaration
string Name { get; }
Property Value
Type | Description |
---|---|
System.String |
ParameterType
Gets the type of the parameter.
Declaration
string ParameterType { get; }
Property Value
Type | Description |
---|---|
System.String |
Pattern
Gets the pattern that this parameter must follow.
Declaration
string Pattern { get; }
Property Value
Type | Description |
---|---|
System.String |