Documentation
¶
Index ¶
- type BooleanInput
- type CreateExtensionCellOutputCreateExtensionCellOutput
- func (v *CreateExtensionCellOutputCreateExtensionCellOutput) GetExitCode() int
- func (v *CreateExtensionCellOutputCreateExtensionCellOutput) GetHtmlUrl() string
- func (v *CreateExtensionCellOutputCreateExtensionCellOutput) GetId() string
- func (v *CreateExtensionCellOutputCreateExtensionCellOutput) GetIsSlackReady() bool
- type CreateExtensionCellOutputResponse
- type Int64Input
- type ReporterCellExecutionSummaryInput
- type ReporterCellInput
- func (v *ReporterCellInput) GetExecutionSummary() ReporterCellExecutionSummaryInput
- func (v *ReporterCellInput) GetKind() int
- func (v *ReporterCellInput) GetLanguageId() string
- func (v *ReporterCellInput) GetMetadata() ReporterCellMetadataInput
- func (v *ReporterCellInput) GetOutputs() []ReporterCellOutputInput
- func (v *ReporterCellInput) GetTextRange() ReporterTextRangeInput
- func (v *ReporterCellInput) GetValue() string
- type ReporterCellMetadataInput
- type ReporterCellOutputInput
- type ReporterCellOutputItemInput
- type ReporterCellOutputProcessInfoInput
- type ReporterDeviceInput
- func (v *ReporterDeviceInput) GetArch() string
- func (v *ReporterDeviceInput) GetHostname() string
- func (v *ReporterDeviceInput) GetMacAddress() string
- func (v *ReporterDeviceInput) GetPlatform() string
- func (v *ReporterDeviceInput) GetRelease() string
- func (v *ReporterDeviceInput) GetShell() string
- func (v *ReporterDeviceInput) GetVendor() string
- func (v *ReporterDeviceInput) GetVsAppHost() string
- func (v *ReporterDeviceInput) GetVsAppName() string
- func (v *ReporterDeviceInput) GetVsAppSessionId() string
- func (v *ReporterDeviceInput) GetVsMachineId() string
- func (v *ReporterDeviceInput) GetVsMetadata() string
- type ReporterExecutionSummaryTimingInput
- type ReporterExtensionInput
- func (v *ReporterExtensionInput) GetAutoSave() bool
- func (v *ReporterExtensionInput) GetDevice() ReporterDeviceInput
- func (v *ReporterExtensionInput) GetFile() ReporterFileInput
- func (v *ReporterExtensionInput) GetGit() ReporterGitInput
- func (v *ReporterExtensionInput) GetSession() ReporterSessionInput
- type ReporterFileInput
- type ReporterFrontmatterInput
- func (v *ReporterFrontmatterInput) GetCategory() string
- func (v *ReporterFrontmatterInput) GetCwd() string
- func (v *ReporterFrontmatterInput) GetRunme() ReporterFrontmatterRunmeInput
- func (v *ReporterFrontmatterInput) GetShell() string
- func (v *ReporterFrontmatterInput) GetSkipPrompts() bool
- func (v *ReporterFrontmatterInput) GetTerminalRows() string
- type ReporterFrontmatterRunmeInput
- type ReporterGitInput
- type ReporterInput
- type ReporterNotebookInput
- type ReporterProcessInfoExitReasonInput
- type ReporterRunmeSessionDocumentInput
- type ReporterRunmeSessionInput
- type ReporterSessionInput
- type ReporterTextRangeInput
- type UInt32
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BooleanInput ¶
type BooleanInput struct {
Value bool `json:"value"`
}
func (*BooleanInput) GetValue ¶
func (v *BooleanInput) GetValue() bool
GetValue returns BooleanInput.Value, and is useful for accessing the field via an interface.
type CreateExtensionCellOutputCreateExtensionCellOutput ¶
type CreateExtensionCellOutputCreateExtensionCellOutput struct {
Id string `json:"id"`
HtmlUrl string `json:"htmlUrl"`
ExitCode int `json:"exitCode"`
IsSlackReady bool `json:"isSlackReady"`
}
CreateExtensionCellOutputCreateExtensionCellOutput includes the requested fields of the GraphQL type CellOutput.
func (*CreateExtensionCellOutputCreateExtensionCellOutput) GetExitCode ¶
func (v *CreateExtensionCellOutputCreateExtensionCellOutput) GetExitCode() int
GetExitCode returns CreateExtensionCellOutputCreateExtensionCellOutput.ExitCode, and is useful for accessing the field via an interface.
func (*CreateExtensionCellOutputCreateExtensionCellOutput) GetHtmlUrl ¶
func (v *CreateExtensionCellOutputCreateExtensionCellOutput) GetHtmlUrl() string
GetHtmlUrl returns CreateExtensionCellOutputCreateExtensionCellOutput.HtmlUrl, and is useful for accessing the field via an interface.
func (*CreateExtensionCellOutputCreateExtensionCellOutput) GetId ¶
func (v *CreateExtensionCellOutputCreateExtensionCellOutput) GetId() string
GetId returns CreateExtensionCellOutputCreateExtensionCellOutput.Id, and is useful for accessing the field via an interface.
func (*CreateExtensionCellOutputCreateExtensionCellOutput) GetIsSlackReady ¶
func (v *CreateExtensionCellOutputCreateExtensionCellOutput) GetIsSlackReady() bool
GetIsSlackReady returns CreateExtensionCellOutputCreateExtensionCellOutput.IsSlackReady, and is useful for accessing the field via an interface.
type CreateExtensionCellOutputResponse ¶
type CreateExtensionCellOutputResponse struct {
CreateExtensionCellOutput CreateExtensionCellOutputCreateExtensionCellOutput `json:"createExtensionCellOutput"`
}
CreateExtensionCellOutputResponse is returned by CreateExtensionCellOutput on success.
func CreateExtensionCellOutput ¶
func CreateExtensionCellOutput( ctx context.Context, client graphql.Client, input ReporterInput, ) (*CreateExtensionCellOutputResponse, error)
func (*CreateExtensionCellOutputResponse) GetCreateExtensionCellOutput ¶
func (v *CreateExtensionCellOutputResponse) GetCreateExtensionCellOutput() CreateExtensionCellOutputCreateExtensionCellOutput
GetCreateExtensionCellOutput returns CreateExtensionCellOutputResponse.CreateExtensionCellOutput, and is useful for accessing the field via an interface.
type Int64Input ¶
type Int64Input struct {
Value string `json:"value"`
}
func (*Int64Input) GetValue ¶
func (v *Int64Input) GetValue() string
GetValue returns Int64Input.Value, and is useful for accessing the field via an interface.
type ReporterCellExecutionSummaryInput ¶
type ReporterCellExecutionSummaryInput struct {
ExecutionOrder UInt32 `json:"executionOrder"`
Success BooleanInput `json:"success"`
Timing ReporterExecutionSummaryTimingInput `json:"timing"`
}
func (*ReporterCellExecutionSummaryInput) GetExecutionOrder ¶
func (v *ReporterCellExecutionSummaryInput) GetExecutionOrder() UInt32
GetExecutionOrder returns ReporterCellExecutionSummaryInput.ExecutionOrder, and is useful for accessing the field via an interface.
func (*ReporterCellExecutionSummaryInput) GetSuccess ¶
func (v *ReporterCellExecutionSummaryInput) GetSuccess() BooleanInput
GetSuccess returns ReporterCellExecutionSummaryInput.Success, and is useful for accessing the field via an interface.
func (*ReporterCellExecutionSummaryInput) GetTiming ¶
func (v *ReporterCellExecutionSummaryInput) GetTiming() ReporterExecutionSummaryTimingInput
GetTiming returns ReporterCellExecutionSummaryInput.Timing, and is useful for accessing the field via an interface.
type ReporterCellInput ¶
type ReporterCellInput struct {
Kind int `json:"kind"`
Value string `json:"value"`
LanguageId string `json:"languageId"`
Metadata ReporterCellMetadataInput `json:"metadata"`
TextRange ReporterTextRangeInput `json:"textRange"`
Outputs []ReporterCellOutputInput `json:"outputs"`
ExecutionSummary ReporterCellExecutionSummaryInput `json:"executionSummary"`
}
func (*ReporterCellInput) GetExecutionSummary ¶
func (v *ReporterCellInput) GetExecutionSummary() ReporterCellExecutionSummaryInput
GetExecutionSummary returns ReporterCellInput.ExecutionSummary, and is useful for accessing the field via an interface.
func (*ReporterCellInput) GetKind ¶
func (v *ReporterCellInput) GetKind() int
GetKind returns ReporterCellInput.Kind, and is useful for accessing the field via an interface.
func (*ReporterCellInput) GetLanguageId ¶
func (v *ReporterCellInput) GetLanguageId() string
GetLanguageId returns ReporterCellInput.LanguageId, and is useful for accessing the field via an interface.
func (*ReporterCellInput) GetMetadata ¶
func (v *ReporterCellInput) GetMetadata() ReporterCellMetadataInput
GetMetadata returns ReporterCellInput.Metadata, and is useful for accessing the field via an interface.
func (*ReporterCellInput) GetOutputs ¶
func (v *ReporterCellInput) GetOutputs() []ReporterCellOutputInput
GetOutputs returns ReporterCellInput.Outputs, and is useful for accessing the field via an interface.
func (*ReporterCellInput) GetTextRange ¶
func (v *ReporterCellInput) GetTextRange() ReporterTextRangeInput
GetTextRange returns ReporterCellInput.TextRange, and is useful for accessing the field via an interface.
func (*ReporterCellInput) GetValue ¶
func (v *ReporterCellInput) GetValue() string
GetValue returns ReporterCellInput.Value, and is useful for accessing the field via an interface.
type ReporterCellMetadataInput ¶
type ReporterCellMetadataInput struct {
Id string `json:"id"`
Name string `json:"name"`
Category string `json:"category"`
MimeType string `json:"mimeType"`
}
func (*ReporterCellMetadataInput) GetCategory ¶
func (v *ReporterCellMetadataInput) GetCategory() string
GetCategory returns ReporterCellMetadataInput.Category, and is useful for accessing the field via an interface.
func (*ReporterCellMetadataInput) GetId ¶
func (v *ReporterCellMetadataInput) GetId() string
GetId returns ReporterCellMetadataInput.Id, and is useful for accessing the field via an interface.
func (*ReporterCellMetadataInput) GetMimeType ¶
func (v *ReporterCellMetadataInput) GetMimeType() string
GetMimeType returns ReporterCellMetadataInput.MimeType, and is useful for accessing the field via an interface.
func (*ReporterCellMetadataInput) GetName ¶
func (v *ReporterCellMetadataInput) GetName() string
GetName returns ReporterCellMetadataInput.Name, and is useful for accessing the field via an interface.
type ReporterCellOutputInput ¶
type ReporterCellOutputInput struct {
Items []ReporterCellOutputItemInput `json:"items"`
Metadata string `json:"metadata"`
ProcessInfo ReporterCellOutputProcessInfoInput `json:"processInfo"`
}
func (*ReporterCellOutputInput) GetItems ¶
func (v *ReporterCellOutputInput) GetItems() []ReporterCellOutputItemInput
GetItems returns ReporterCellOutputInput.Items, and is useful for accessing the field via an interface.
func (*ReporterCellOutputInput) GetMetadata ¶
func (v *ReporterCellOutputInput) GetMetadata() string
GetMetadata returns ReporterCellOutputInput.Metadata, and is useful for accessing the field via an interface.
func (*ReporterCellOutputInput) GetProcessInfo ¶
func (v *ReporterCellOutputInput) GetProcessInfo() ReporterCellOutputProcessInfoInput
GetProcessInfo returns ReporterCellOutputInput.ProcessInfo, and is useful for accessing the field via an interface.
type ReporterCellOutputItemInput ¶
type ReporterCellOutputItemInput struct {
Data string `json:"data"`
Type string `json:"type"`
Mime string `json:"mime"`
}
func (*ReporterCellOutputItemInput) GetData ¶
func (v *ReporterCellOutputItemInput) GetData() string
GetData returns ReporterCellOutputItemInput.Data, and is useful for accessing the field via an interface.
func (*ReporterCellOutputItemInput) GetMime ¶
func (v *ReporterCellOutputItemInput) GetMime() string
GetMime returns ReporterCellOutputItemInput.Mime, and is useful for accessing the field via an interface.
func (*ReporterCellOutputItemInput) GetType ¶
func (v *ReporterCellOutputItemInput) GetType() string
GetType returns ReporterCellOutputItemInput.Type, and is useful for accessing the field via an interface.
type ReporterCellOutputProcessInfoInput ¶
type ReporterCellOutputProcessInfoInput struct {
ExitReason ReporterProcessInfoExitReasonInput `json:"exitReason"`
Pid Int64Input `json:"pid"`
}
func (*ReporterCellOutputProcessInfoInput) GetExitReason ¶
func (v *ReporterCellOutputProcessInfoInput) GetExitReason() ReporterProcessInfoExitReasonInput
GetExitReason returns ReporterCellOutputProcessInfoInput.ExitReason, and is useful for accessing the field via an interface.
func (*ReporterCellOutputProcessInfoInput) GetPid ¶
func (v *ReporterCellOutputProcessInfoInput) GetPid() Int64Input
GetPid returns ReporterCellOutputProcessInfoInput.Pid, and is useful for accessing the field via an interface.
type ReporterDeviceInput ¶
type ReporterDeviceInput struct {
MacAddress string `json:"macAddress"`
Hostname string `json:"hostname"`
Platform string `json:"platform"`
Release string `json:"release"`
Arch string `json:"arch"`
Vendor string `json:"vendor"`
Shell string `json:"shell"`
VsAppHost string `json:"vsAppHost"`
VsAppName string `json:"vsAppName"`
VsAppSessionId string `json:"vsAppSessionId"`
VsMachineId string `json:"vsMachineId"`
VsMetadata string `json:"vsMetadata"`
}
func (*ReporterDeviceInput) GetArch ¶
func (v *ReporterDeviceInput) GetArch() string
GetArch returns ReporterDeviceInput.Arch, and is useful for accessing the field via an interface.
func (*ReporterDeviceInput) GetHostname ¶
func (v *ReporterDeviceInput) GetHostname() string
GetHostname returns ReporterDeviceInput.Hostname, and is useful for accessing the field via an interface.
func (*ReporterDeviceInput) GetMacAddress ¶
func (v *ReporterDeviceInput) GetMacAddress() string
GetMacAddress returns ReporterDeviceInput.MacAddress, and is useful for accessing the field via an interface.
func (*ReporterDeviceInput) GetPlatform ¶
func (v *ReporterDeviceInput) GetPlatform() string
GetPlatform returns ReporterDeviceInput.Platform, and is useful for accessing the field via an interface.
func (*ReporterDeviceInput) GetRelease ¶
func (v *ReporterDeviceInput) GetRelease() string
GetRelease returns ReporterDeviceInput.Release, and is useful for accessing the field via an interface.
func (*ReporterDeviceInput) GetShell ¶
func (v *ReporterDeviceInput) GetShell() string
GetShell returns ReporterDeviceInput.Shell, and is useful for accessing the field via an interface.
func (*ReporterDeviceInput) GetVendor ¶
func (v *ReporterDeviceInput) GetVendor() string
GetVendor returns ReporterDeviceInput.Vendor, and is useful for accessing the field via an interface.
func (*ReporterDeviceInput) GetVsAppHost ¶
func (v *ReporterDeviceInput) GetVsAppHost() string
GetVsAppHost returns ReporterDeviceInput.VsAppHost, and is useful for accessing the field via an interface.
func (*ReporterDeviceInput) GetVsAppName ¶
func (v *ReporterDeviceInput) GetVsAppName() string
GetVsAppName returns ReporterDeviceInput.VsAppName, and is useful for accessing the field via an interface.
func (*ReporterDeviceInput) GetVsAppSessionId ¶
func (v *ReporterDeviceInput) GetVsAppSessionId() string
GetVsAppSessionId returns ReporterDeviceInput.VsAppSessionId, and is useful for accessing the field via an interface.
func (*ReporterDeviceInput) GetVsMachineId ¶
func (v *ReporterDeviceInput) GetVsMachineId() string
GetVsMachineId returns ReporterDeviceInput.VsMachineId, and is useful for accessing the field via an interface.
func (*ReporterDeviceInput) GetVsMetadata ¶
func (v *ReporterDeviceInput) GetVsMetadata() string
GetVsMetadata returns ReporterDeviceInput.VsMetadata, and is useful for accessing the field via an interface.
type ReporterExecutionSummaryTimingInput ¶
type ReporterExecutionSummaryTimingInput struct {
StartTime Int64Input `json:"startTime"`
EndTime Int64Input `json:"endTime"`
}
func (*ReporterExecutionSummaryTimingInput) GetEndTime ¶
func (v *ReporterExecutionSummaryTimingInput) GetEndTime() Int64Input
GetEndTime returns ReporterExecutionSummaryTimingInput.EndTime, and is useful for accessing the field via an interface.
func (*ReporterExecutionSummaryTimingInput) GetStartTime ¶
func (v *ReporterExecutionSummaryTimingInput) GetStartTime() Int64Input
GetStartTime returns ReporterExecutionSummaryTimingInput.StartTime, and is useful for accessing the field via an interface.
type ReporterExtensionInput ¶
type ReporterExtensionInput struct {
AutoSave bool `json:"autoSave"`
Git ReporterGitInput `json:"git"`
File ReporterFileInput `json:"file"`
Session ReporterSessionInput `json:"session"`
Device ReporterDeviceInput `json:"device"`
}
func (*ReporterExtensionInput) GetAutoSave ¶
func (v *ReporterExtensionInput) GetAutoSave() bool
GetAutoSave returns ReporterExtensionInput.AutoSave, and is useful for accessing the field via an interface.
func (*ReporterExtensionInput) GetDevice ¶
func (v *ReporterExtensionInput) GetDevice() ReporterDeviceInput
GetDevice returns ReporterExtensionInput.Device, and is useful for accessing the field via an interface.
func (*ReporterExtensionInput) GetFile ¶
func (v *ReporterExtensionInput) GetFile() ReporterFileInput
GetFile returns ReporterExtensionInput.File, and is useful for accessing the field via an interface.
func (*ReporterExtensionInput) GetGit ¶
func (v *ReporterExtensionInput) GetGit() ReporterGitInput
GetGit returns ReporterExtensionInput.Git, and is useful for accessing the field via an interface.
func (*ReporterExtensionInput) GetSession ¶
func (v *ReporterExtensionInput) GetSession() ReporterSessionInput
GetSession returns ReporterExtensionInput.Session, and is useful for accessing the field via an interface.
type ReporterFileInput ¶
func (*ReporterFileInput) GetContent ¶
func (v *ReporterFileInput) GetContent() string
GetContent returns ReporterFileInput.Content, and is useful for accessing the field via an interface.
func (*ReporterFileInput) GetPath ¶
func (v *ReporterFileInput) GetPath() string
GetPath returns ReporterFileInput.Path, and is useful for accessing the field via an interface.
type ReporterFrontmatterInput ¶
type ReporterFrontmatterInput struct {
Shell string `json:"shell"`
Cwd string `json:"cwd"`
SkipPrompts bool `json:"skipPrompts"`
Runme ReporterFrontmatterRunmeInput `json:"runme"`
Category string `json:"category"`
TerminalRows string `json:"terminalRows"`
}
func (*ReporterFrontmatterInput) GetCategory ¶
func (v *ReporterFrontmatterInput) GetCategory() string
GetCategory returns ReporterFrontmatterInput.Category, and is useful for accessing the field via an interface.
func (*ReporterFrontmatterInput) GetCwd ¶
func (v *ReporterFrontmatterInput) GetCwd() string
GetCwd returns ReporterFrontmatterInput.Cwd, and is useful for accessing the field via an interface.
func (*ReporterFrontmatterInput) GetRunme ¶
func (v *ReporterFrontmatterInput) GetRunme() ReporterFrontmatterRunmeInput
GetRunme returns ReporterFrontmatterInput.Runme, and is useful for accessing the field via an interface.
func (*ReporterFrontmatterInput) GetShell ¶
func (v *ReporterFrontmatterInput) GetShell() string
GetShell returns ReporterFrontmatterInput.Shell, and is useful for accessing the field via an interface.
func (*ReporterFrontmatterInput) GetSkipPrompts ¶
func (v *ReporterFrontmatterInput) GetSkipPrompts() bool
GetSkipPrompts returns ReporterFrontmatterInput.SkipPrompts, and is useful for accessing the field via an interface.
func (*ReporterFrontmatterInput) GetTerminalRows ¶
func (v *ReporterFrontmatterInput) GetTerminalRows() string
GetTerminalRows returns ReporterFrontmatterInput.TerminalRows, and is useful for accessing the field via an interface.
type ReporterFrontmatterRunmeInput ¶
type ReporterFrontmatterRunmeInput struct {
Id string `json:"id"`
Version string `json:"version"`
Session ReporterRunmeSessionInput `json:"session"`
}
func (*ReporterFrontmatterRunmeInput) GetId ¶
func (v *ReporterFrontmatterRunmeInput) GetId() string
GetId returns ReporterFrontmatterRunmeInput.Id, and is useful for accessing the field via an interface.
func (*ReporterFrontmatterRunmeInput) GetSession ¶
func (v *ReporterFrontmatterRunmeInput) GetSession() ReporterRunmeSessionInput
GetSession returns ReporterFrontmatterRunmeInput.Session, and is useful for accessing the field via an interface.
func (*ReporterFrontmatterRunmeInput) GetVersion ¶
func (v *ReporterFrontmatterRunmeInput) GetVersion() string
GetVersion returns ReporterFrontmatterRunmeInput.Version, and is useful for accessing the field via an interface.
type ReporterGitInput ¶
type ReporterGitInput struct {
Repository string `json:"repository"`
Branch string `json:"branch"`
Commit string `json:"commit"`
}
func (*ReporterGitInput) GetBranch ¶
func (v *ReporterGitInput) GetBranch() string
GetBranch returns ReporterGitInput.Branch, and is useful for accessing the field via an interface.
func (*ReporterGitInput) GetCommit ¶
func (v *ReporterGitInput) GetCommit() string
GetCommit returns ReporterGitInput.Commit, and is useful for accessing the field via an interface.
func (*ReporterGitInput) GetRepository ¶
func (v *ReporterGitInput) GetRepository() string
GetRepository returns ReporterGitInput.Repository, and is useful for accessing the field via an interface.
type ReporterInput ¶
type ReporterInput struct {
Notebook ReporterNotebookInput `json:"notebook"`
Extension ReporterExtensionInput `json:"extension"`
}
func (*ReporterInput) GetExtension ¶
func (v *ReporterInput) GetExtension() ReporterExtensionInput
GetExtension returns ReporterInput.Extension, and is useful for accessing the field via an interface.
func (*ReporterInput) GetNotebook ¶
func (v *ReporterInput) GetNotebook() ReporterNotebookInput
GetNotebook returns ReporterInput.Notebook, and is useful for accessing the field via an interface.
type ReporterNotebookInput ¶
type ReporterNotebookInput struct {
Cells []ReporterCellInput `json:"cells"`
Metadata string `json:"metadata"`
Frontmatter ReporterFrontmatterInput `json:"frontmatter"`
}
func (*ReporterNotebookInput) GetCells ¶
func (v *ReporterNotebookInput) GetCells() []ReporterCellInput
GetCells returns ReporterNotebookInput.Cells, and is useful for accessing the field via an interface.
func (*ReporterNotebookInput) GetFrontmatter ¶
func (v *ReporterNotebookInput) GetFrontmatter() ReporterFrontmatterInput
GetFrontmatter returns ReporterNotebookInput.Frontmatter, and is useful for accessing the field via an interface.
func (*ReporterNotebookInput) GetMetadata ¶
func (v *ReporterNotebookInput) GetMetadata() string
GetMetadata returns ReporterNotebookInput.Metadata, and is useful for accessing the field via an interface.
type ReporterProcessInfoExitReasonInput ¶
type ReporterProcessInfoExitReasonInput struct {
Type string `json:"type"`
Code UInt32 `json:"code"`
}
func (*ReporterProcessInfoExitReasonInput) GetCode ¶
func (v *ReporterProcessInfoExitReasonInput) GetCode() UInt32
GetCode returns ReporterProcessInfoExitReasonInput.Code, and is useful for accessing the field via an interface.
func (*ReporterProcessInfoExitReasonInput) GetType ¶
func (v *ReporterProcessInfoExitReasonInput) GetType() string
GetType returns ReporterProcessInfoExitReasonInput.Type, and is useful for accessing the field via an interface.
type ReporterRunmeSessionDocumentInput ¶
type ReporterRunmeSessionDocumentInput struct {
RelativePath string `json:"relativePath"`
}
func (*ReporterRunmeSessionDocumentInput) GetRelativePath ¶
func (v *ReporterRunmeSessionDocumentInput) GetRelativePath() string
GetRelativePath returns ReporterRunmeSessionDocumentInput.RelativePath, and is useful for accessing the field via an interface.
type ReporterRunmeSessionInput ¶
type ReporterRunmeSessionInput struct {
Id string `json:"id"`
Document ReporterRunmeSessionDocumentInput `json:"document"`
}
func (*ReporterRunmeSessionInput) GetDocument ¶
func (v *ReporterRunmeSessionInput) GetDocument() ReporterRunmeSessionDocumentInput
GetDocument returns ReporterRunmeSessionInput.Document, and is useful for accessing the field via an interface.
func (*ReporterRunmeSessionInput) GetId ¶
func (v *ReporterRunmeSessionInput) GetId() string
GetId returns ReporterRunmeSessionInput.Id, and is useful for accessing the field via an interface.
type ReporterSessionInput ¶
type ReporterSessionInput struct {
PlainOutput string `json:"plainOutput"`
MaskedOutput string `json:"maskedOutput"`
}
func (*ReporterSessionInput) GetMaskedOutput ¶
func (v *ReporterSessionInput) GetMaskedOutput() string
GetMaskedOutput returns ReporterSessionInput.MaskedOutput, and is useful for accessing the field via an interface.
func (*ReporterSessionInput) GetPlainOutput ¶
func (v *ReporterSessionInput) GetPlainOutput() string
GetPlainOutput returns ReporterSessionInput.PlainOutput, and is useful for accessing the field via an interface.
type ReporterTextRangeInput ¶
func (*ReporterTextRangeInput) GetEnd ¶
func (v *ReporterTextRangeInput) GetEnd() int
GetEnd returns ReporterTextRangeInput.End, and is useful for accessing the field via an interface.
func (*ReporterTextRangeInput) GetStart ¶
func (v *ReporterTextRangeInput) GetStart() int
GetStart returns ReporterTextRangeInput.Start, and is useful for accessing the field via an interface.