Class SourcePosition
Position in the Source
content including its line, column number, and an index of the File
in the Source
message. Used for debug purposes.
Implements
Inherited Members
Namespace: Google.Apis.FirebaseRules.v1.Data
Assembly: Google.Apis.FirebaseRules.v1.dll
Syntax
public class SourcePosition : IDirectResponseSchema
Properties
Column
First column on the source line associated with the source fragment.
Declaration
[JsonProperty("column")]
public virtual int? Column { get; set; }
Property Value
Type | Description |
---|---|
int? |
CurrentOffset
Start position relative to the beginning of the file.
Declaration
[JsonProperty("currentOffset")]
public virtual int? CurrentOffset { get; set; }
Property Value
Type | Description |
---|---|
int? |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
EndOffset
End position relative to the beginning of the file.
Declaration
[JsonProperty("endOffset")]
public virtual int? EndOffset { get; set; }
Property Value
Type | Description |
---|---|
int? |
FileName
Name of the File
.
Declaration
[JsonProperty("fileName")]
public virtual string FileName { get; set; }
Property Value
Type | Description |
---|---|
string |
Line
Line number of the source fragment. 1-based.
Declaration
[JsonProperty("line")]
public virtual int? Line { get; set; }
Property Value
Type | Description |
---|---|
int? |