datastore

package
v0.4.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 15, 2022 License: MIT Imports: 13 Imported by: 1

Documentation

Overview

Package datastore connects to the openslies-datastore-service to receive values.

The Datastore object uses a cache to only request keys once. If a key in the cache gets an update via the keychanger, the cache gets updated.

Code generated from models.yml DO NOT EDIT.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func InvalidKeys

func InvalidKeys(keys ...string) []string

InvalidKeys checks if all of the given keys are valid. Invalid keys are returned.

A return value of nil means, that all keys are valid.

Types

type Datastore

type Datastore struct {
	// contains filtered or unexported fields
}

Datastore can be used to get values from the datastore-service.

Has to be created with datastore.New().

func New

func New(url string) *Datastore

New returns a new Datastore object.

func (*Datastore) Get

func (d *Datastore) Get(ctx context.Context, keys ...string) (map[string][]byte, error)

Get returns the value for one or many keys.

If a key does not exist, the value nil is returned for that key.

func (*Datastore) ListenOnUpdates

func (d *Datastore) ListenOnUpdates(ctx context.Context, keychanger Updater, errHandler func(error))

ListenOnUpdates listens for updates and informs all listeners.

func (*Datastore) RegisterCalculatedField

func (d *Datastore) RegisterCalculatedField(field string, f func(ctx context.Context, key string, changed map[string][]byte) ([]byte, error))

RegisterCalculatedField creates a virtual field that is not in the datastore but is created at runtime.

`field` has to be in the form `collection/field`. The field is created for every full qualified field that matches that field.

When a fqfield, that matches the field, is fetched for the first time, then f is called with `changed==nil`. On every ds-update, `f` is called again with the data, that has changed.

func (*Datastore) RegisterChangeListener

func (d *Datastore) RegisterChangeListener(f func(map[string][]byte) error)

RegisterChangeListener registers a function that is called whenever an datastore update happens.

func (*Datastore) RequestKeys

func (d *Datastore) RequestKeys(url string, keys []string) (map[string][]byte, error)

RequestKeys request a list of keys from the datastore.

If an error happens, no key is returned.

The returned map contains exacply the given keys. If a key does not exist in the datastore, then the value of this key is <nil>.

func (*Datastore) ResetCache

func (d *Datastore) ResetCache()

ResetCache clears the internal cache.

type DoesNotExistError

type DoesNotExistError string

DoesNotExistError is thrown when an object does not exist.

func (DoesNotExistError) Error

func (e DoesNotExistError) Error() string

type Getter

type Getter interface {
	Get(ctx context.Context, keys ...string) (map[string][]byte, error)
}

Getter can get values from keys.

The Datastore object implements this interface.

type Recorder

type Recorder struct {
	// contains filtered or unexported fields
}

Recorder implements the datastore.Getter interface. It records all requested keys. They can be get with Recorder.Keys()

func NewRecorder

func NewRecorder(g Getter) *Recorder

NewRecorder initializes a Recorder.

func (*Recorder) Get

func (r *Recorder) Get(ctx context.Context, keys ...string) (map[string][]byte, error)

Get fetches the keys from the datastore.

func (*Recorder) Keys

func (r *Recorder) Keys() map[string]bool

Keys returns all datastore keys that where fetched in the process.

type Request

type Request struct {
	// contains filtered or unexported fields
}

Request provides functions to access the fields of the datastore.

Request is not save for concurent use. One Request object AND its value can only be used in one goroutine.

func NewRequest

func NewRequest(getter Getter) *Request

NewRequest initializes a Request object.

func (*Request) AgendaItem_ChildIDs

func (r *Request) AgendaItem_ChildIDs(agendaItemID int) *ValueIntSlice

func (*Request) AgendaItem_Closed

func (r *Request) AgendaItem_Closed(agendaItemID int) *ValueBool

func (*Request) AgendaItem_Comment

func (r *Request) AgendaItem_Comment(agendaItemID int) *ValueString

func (*Request) AgendaItem_ContentObjectID

func (r *Request) AgendaItem_ContentObjectID(agendaItemID int) *ValueString

func (*Request) AgendaItem_Duration

func (r *Request) AgendaItem_Duration(agendaItemID int) *ValueInt

func (*Request) AgendaItem_ID

func (r *Request) AgendaItem_ID(agendaItemID int) *ValueInt

func (*Request) AgendaItem_IsHidden

func (r *Request) AgendaItem_IsHidden(agendaItemID int) *ValueBool

func (*Request) AgendaItem_IsInternal

func (r *Request) AgendaItem_IsInternal(agendaItemID int) *ValueBool

func (*Request) AgendaItem_ItemNumber

func (r *Request) AgendaItem_ItemNumber(agendaItemID int) *ValueString

func (*Request) AgendaItem_Level

func (r *Request) AgendaItem_Level(agendaItemID int) *ValueInt

func (*Request) AgendaItem_MeetingID

func (r *Request) AgendaItem_MeetingID(agendaItemID int) *ValueInt

func (*Request) AgendaItem_ParentID

func (r *Request) AgendaItem_ParentID(agendaItemID int) *ValueMaybeInt

func (*Request) AgendaItem_ProjectionIDs

func (r *Request) AgendaItem_ProjectionIDs(agendaItemID int) *ValueIntSlice

func (*Request) AgendaItem_TagIDs

func (r *Request) AgendaItem_TagIDs(agendaItemID int) *ValueIntSlice

func (*Request) AgendaItem_Type

func (r *Request) AgendaItem_Type(agendaItemID int) *ValueString

func (*Request) AgendaItem_Weight

func (r *Request) AgendaItem_Weight(agendaItemID int) *ValueInt

func (*Request) AssignmentCandidate_AssignmentID

func (r *Request) AssignmentCandidate_AssignmentID(assignmentCandidateID int) *ValueInt

func (*Request) AssignmentCandidate_ID

func (r *Request) AssignmentCandidate_ID(assignmentCandidateID int) *ValueInt

func (*Request) AssignmentCandidate_MeetingID

func (r *Request) AssignmentCandidate_MeetingID(assignmentCandidateID int) *ValueInt

func (*Request) AssignmentCandidate_UserID

func (r *Request) AssignmentCandidate_UserID(assignmentCandidateID int) *ValueInt

func (*Request) AssignmentCandidate_Weight

func (r *Request) AssignmentCandidate_Weight(assignmentCandidateID int) *ValueInt

func (*Request) Assignment_AgendaItemID

func (r *Request) Assignment_AgendaItemID(assignmentID int) *ValueMaybeInt

func (*Request) Assignment_AttachmentIDs

func (r *Request) Assignment_AttachmentIDs(assignmentID int) *ValueIntSlice

func (*Request) Assignment_CandidateIDs

func (r *Request) Assignment_CandidateIDs(assignmentID int) *ValueIntSlice

func (*Request) Assignment_DefaultPollDescription

func (r *Request) Assignment_DefaultPollDescription(assignmentID int) *ValueString

func (*Request) Assignment_Description

func (r *Request) Assignment_Description(assignmentID int) *ValueString

func (*Request) Assignment_ID

func (r *Request) Assignment_ID(assignmentID int) *ValueInt

func (*Request) Assignment_ListOfSpeakersID

func (r *Request) Assignment_ListOfSpeakersID(assignmentID int) *ValueInt

func (*Request) Assignment_MeetingID

func (r *Request) Assignment_MeetingID(assignmentID int) *ValueInt

func (*Request) Assignment_NumberPollCandidates

func (r *Request) Assignment_NumberPollCandidates(assignmentID int) *ValueBool

func (*Request) Assignment_OpenPosts

func (r *Request) Assignment_OpenPosts(assignmentID int) *ValueInt

func (*Request) Assignment_Phase

func (r *Request) Assignment_Phase(assignmentID int) *ValueString

func (*Request) Assignment_PollIDs

func (r *Request) Assignment_PollIDs(assignmentID int) *ValueIntSlice

func (*Request) Assignment_ProjectionIDs

func (r *Request) Assignment_ProjectionIDs(assignmentID int) *ValueIntSlice

func (*Request) Assignment_TagIDs

func (r *Request) Assignment_TagIDs(assignmentID int) *ValueIntSlice

func (*Request) Assignment_Title

func (r *Request) Assignment_Title(assignmentID int) *ValueString

func (*Request) ChatGroup_ChatMessageIDs

func (r *Request) ChatGroup_ChatMessageIDs(chatGroupID int) *ValueIntSlice

func (*Request) ChatGroup_ID

func (r *Request) ChatGroup_ID(chatGroupID int) *ValueInt

func (*Request) ChatGroup_MeetingID

func (r *Request) ChatGroup_MeetingID(chatGroupID int) *ValueInt

func (*Request) ChatGroup_Name

func (r *Request) ChatGroup_Name(chatGroupID int) *ValueString

func (*Request) ChatGroup_ReadGroupIDs

func (r *Request) ChatGroup_ReadGroupIDs(chatGroupID int) *ValueIntSlice

func (*Request) ChatGroup_Weight

func (r *Request) ChatGroup_Weight(chatGroupID int) *ValueInt

func (*Request) ChatGroup_WriteGroupIDs

func (r *Request) ChatGroup_WriteGroupIDs(chatGroupID int) *ValueIntSlice

func (*Request) ChatMessage_ChatGroupID

func (r *Request) ChatMessage_ChatGroupID(chatMessageID int) *ValueInt

func (*Request) ChatMessage_Content

func (r *Request) ChatMessage_Content(chatMessageID int) *ValueString

func (*Request) ChatMessage_Created

func (r *Request) ChatMessage_Created(chatMessageID int) *ValueInt

func (*Request) ChatMessage_ID

func (r *Request) ChatMessage_ID(chatMessageID int) *ValueInt

func (*Request) ChatMessage_MeetingID

func (r *Request) ChatMessage_MeetingID(chatMessageID int) *ValueInt

func (*Request) ChatMessage_UserID

func (r *Request) ChatMessage_UserID(chatMessageID int) *ValueInt

func (*Request) Committee_DefaultMeetingID

func (r *Request) Committee_DefaultMeetingID(committeeID int) *ValueMaybeInt

func (*Request) Committee_Description

func (r *Request) Committee_Description(committeeID int) *ValueString

func (*Request) Committee_ForwardToCommitteeIDs

func (r *Request) Committee_ForwardToCommitteeIDs(committeeID int) *ValueIntSlice

func (*Request) Committee_ID

func (r *Request) Committee_ID(committeeID int) *ValueInt

func (*Request) Committee_MeetingIDs

func (r *Request) Committee_MeetingIDs(committeeID int) *ValueIntSlice

func (*Request) Committee_Name

func (r *Request) Committee_Name(committeeID int) *ValueString

func (*Request) Committee_OrganizationID

func (r *Request) Committee_OrganizationID(committeeID int) *ValueInt

func (*Request) Committee_OrganizationTagIDs

func (r *Request) Committee_OrganizationTagIDs(committeeID int) *ValueIntSlice

func (*Request) Committee_ReceiveForwardingsFromCommitteeIDs

func (r *Request) Committee_ReceiveForwardingsFromCommitteeIDs(committeeID int) *ValueIntSlice

func (*Request) Committee_TemplateMeetingID

func (r *Request) Committee_TemplateMeetingID(committeeID int) *ValueMaybeInt

func (*Request) Committee_UserIDs

func (r *Request) Committee_UserIDs(committeeID int) *ValueIntSlice

func (*Request) Err

func (r *Request) Err() error

Err returns an error from a previous call.

func (*Request) Execute

func (r *Request) Execute(ctx context.Context) error

Execute loads all requested keys from the datastore.

func (*Request) Group_AdminGroupForMeetingID

func (r *Request) Group_AdminGroupForMeetingID(groupID int) *ValueMaybeInt

func (*Request) Group_DefaultGroupForMeetingID

func (r *Request) Group_DefaultGroupForMeetingID(groupID int) *ValueMaybeInt

func (*Request) Group_ID

func (r *Request) Group_ID(groupID int) *ValueInt

func (*Request) Group_MediafileAccessGroupIDs

func (r *Request) Group_MediafileAccessGroupIDs(groupID int) *ValueIntSlice

func (*Request) Group_MediafileInheritedAccessGroupIDs

func (r *Request) Group_MediafileInheritedAccessGroupIDs(groupID int) *ValueIntSlice

func (*Request) Group_MeetingID

func (r *Request) Group_MeetingID(groupID int) *ValueInt

func (*Request) Group_Name

func (r *Request) Group_Name(groupID int) *ValueString

func (*Request) Group_Permissions

func (r *Request) Group_Permissions(groupID int) *ValueStringSlice

func (*Request) Group_PollIDs

func (r *Request) Group_PollIDs(groupID int) *ValueIntSlice

func (*Request) Group_ReadChatGroupIDs

func (r *Request) Group_ReadChatGroupIDs(groupID int) *ValueIntSlice

func (*Request) Group_ReadCommentSectionIDs

func (r *Request) Group_ReadCommentSectionIDs(groupID int) *ValueIntSlice

func (*Request) Group_UsedAsAssignmentPollDefaultID

func (r *Request) Group_UsedAsAssignmentPollDefaultID(groupID int) *ValueMaybeInt

func (*Request) Group_UsedAsMotionPollDefaultID

func (r *Request) Group_UsedAsMotionPollDefaultID(groupID int) *ValueMaybeInt

func (*Request) Group_UsedAsPollDefaultID

func (r *Request) Group_UsedAsPollDefaultID(groupID int) *ValueMaybeInt

func (*Request) Group_UserIDs

func (r *Request) Group_UserIDs(groupID int) *ValueIntSlice

func (*Request) Group_WriteChatGroupIDs

func (r *Request) Group_WriteChatGroupIDs(groupID int) *ValueIntSlice

func (*Request) Group_WriteCommentSectionIDs

func (r *Request) Group_WriteCommentSectionIDs(groupID int) *ValueIntSlice

func (*Request) ListOfSpeakers_Closed

func (r *Request) ListOfSpeakers_Closed(listOfSpeakersID int) *ValueBool

func (*Request) ListOfSpeakers_ContentObjectID

func (r *Request) ListOfSpeakers_ContentObjectID(listOfSpeakersID int) *ValueString

func (*Request) ListOfSpeakers_ID

func (r *Request) ListOfSpeakers_ID(listOfSpeakersID int) *ValueInt

func (*Request) ListOfSpeakers_MeetingID

func (r *Request) ListOfSpeakers_MeetingID(listOfSpeakersID int) *ValueInt

func (*Request) ListOfSpeakers_ProjectionIDs

func (r *Request) ListOfSpeakers_ProjectionIDs(listOfSpeakersID int) *ValueIntSlice

func (*Request) ListOfSpeakers_SpeakerIDs

func (r *Request) ListOfSpeakers_SpeakerIDs(listOfSpeakersID int) *ValueIntSlice

func (*Request) Mediafile_AccessGroupIDs

func (r *Request) Mediafile_AccessGroupIDs(mediafileID int) *ValueIntSlice

func (*Request) Mediafile_AttachmentIDs

func (r *Request) Mediafile_AttachmentIDs(mediafileID int) *ValueStringSlice

func (*Request) Mediafile_ChildIDs

func (r *Request) Mediafile_ChildIDs(mediafileID int) *ValueIntSlice

func (*Request) Mediafile_CreateTimestamp

func (r *Request) Mediafile_CreateTimestamp(mediafileID int) *ValueInt

func (*Request) Mediafile_Filename

func (r *Request) Mediafile_Filename(mediafileID int) *ValueString

func (*Request) Mediafile_Filesize

func (r *Request) Mediafile_Filesize(mediafileID int) *ValueInt

func (*Request) Mediafile_ID

func (r *Request) Mediafile_ID(mediafileID int) *ValueInt

func (*Request) Mediafile_InheritedAccessGroupIDs

func (r *Request) Mediafile_InheritedAccessGroupIDs(mediafileID int) *ValueIntSlice

func (*Request) Mediafile_IsDirectory

func (r *Request) Mediafile_IsDirectory(mediafileID int) *ValueBool

func (*Request) Mediafile_IsPublic

func (r *Request) Mediafile_IsPublic(mediafileID int) *ValueBool

func (*Request) Mediafile_ListOfSpeakersID

func (r *Request) Mediafile_ListOfSpeakersID(mediafileID int) *ValueMaybeInt

func (*Request) Mediafile_MeetingID

func (r *Request) Mediafile_MeetingID(mediafileID int) *ValueInt

func (*Request) Mediafile_Mimetype

func (r *Request) Mediafile_Mimetype(mediafileID int) *ValueString

func (*Request) Mediafile_ParentID

func (r *Request) Mediafile_ParentID(mediafileID int) *ValueMaybeInt

func (*Request) Mediafile_PdfInformation

func (r *Request) Mediafile_PdfInformation(mediafileID int) *ValueJSON

func (*Request) Mediafile_ProjectionIDs

func (r *Request) Mediafile_ProjectionIDs(mediafileID int) *ValueIntSlice

func (*Request) Mediafile_Title

func (r *Request) Mediafile_Title(mediafileID int) *ValueString

func (*Request) Mediafile_UsedAsFontInMeetingID

func (r *Request) Mediafile_UsedAsFontInMeetingID(mediafileID int, replacement string) *ValueInt

func (*Request) Mediafile_UsedAsFontInMeetingIDTmpl

func (r *Request) Mediafile_UsedAsFontInMeetingIDTmpl(mediafileID int) *ValueStringSlice

func (*Request) Mediafile_UsedAsLogoInMeetingID

func (r *Request) Mediafile_UsedAsLogoInMeetingID(mediafileID int, replacement string) *ValueInt

func (*Request) Mediafile_UsedAsLogoInMeetingIDTmpl

func (r *Request) Mediafile_UsedAsLogoInMeetingIDTmpl(mediafileID int) *ValueStringSlice

func (*Request) Meeting_AdminGroupID

func (r *Request) Meeting_AdminGroupID(meetingID int) *ValueMaybeInt

func (*Request) Meeting_AgendaEnableNumbering

func (r *Request) Meeting_AgendaEnableNumbering(meetingID int) *ValueBool

func (*Request) Meeting_AgendaItemCreation

func (r *Request) Meeting_AgendaItemCreation(meetingID int) *ValueString

func (*Request) Meeting_AgendaItemIDs

func (r *Request) Meeting_AgendaItemIDs(meetingID int) *ValueIntSlice

func (*Request) Meeting_AgendaNewItemsDefaultVisibility

func (r *Request) Meeting_AgendaNewItemsDefaultVisibility(meetingID int) *ValueString

func (*Request) Meeting_AgendaNumberPrefix

func (r *Request) Meeting_AgendaNumberPrefix(meetingID int) *ValueString

func (*Request) Meeting_AgendaNumeralSystem

func (r *Request) Meeting_AgendaNumeralSystem(meetingID int) *ValueString

func (*Request) Meeting_AgendaShowInternalItemsOnProjector

func (r *Request) Meeting_AgendaShowInternalItemsOnProjector(meetingID int) *ValueBool

func (*Request) Meeting_AgendaShowSubtitles

func (r *Request) Meeting_AgendaShowSubtitles(meetingID int) *ValueBool

func (*Request) Meeting_AllProjectionIDs

func (r *Request) Meeting_AllProjectionIDs(meetingID int) *ValueIntSlice

func (*Request) Meeting_ApplauseEnable

func (r *Request) Meeting_ApplauseEnable(meetingID int) *ValueBool

func (*Request) Meeting_ApplauseMaxAmount

func (r *Request) Meeting_ApplauseMaxAmount(meetingID int) *ValueInt

func (*Request) Meeting_ApplauseMinAmount

func (r *Request) Meeting_ApplauseMinAmount(meetingID int) *ValueInt

func (*Request) Meeting_ApplauseParticleImageUrl

func (r *Request) Meeting_ApplauseParticleImageUrl(meetingID int) *ValueString

func (*Request) Meeting_ApplauseShowLevel

func (r *Request) Meeting_ApplauseShowLevel(meetingID int) *ValueBool

func (*Request) Meeting_ApplauseTimeout

func (r *Request) Meeting_ApplauseTimeout(meetingID int) *ValueInt

func (*Request) Meeting_ApplauseType

func (r *Request) Meeting_ApplauseType(meetingID int) *ValueString

func (*Request) Meeting_AssignmentCandidateIDs

func (r *Request) Meeting_AssignmentCandidateIDs(meetingID int) *ValueIntSlice

func (*Request) Meeting_AssignmentIDs

func (r *Request) Meeting_AssignmentIDs(meetingID int) *ValueIntSlice

func (*Request) Meeting_AssignmentPollAddCandidatesToListOfSpeakers

func (r *Request) Meeting_AssignmentPollAddCandidatesToListOfSpeakers(meetingID int) *ValueBool

func (*Request) Meeting_AssignmentPollBallotPaperNumber

func (r *Request) Meeting_AssignmentPollBallotPaperNumber(meetingID int) *ValueInt

func (*Request) Meeting_AssignmentPollBallotPaperSelection

func (r *Request) Meeting_AssignmentPollBallotPaperSelection(meetingID int) *ValueString

func (*Request) Meeting_AssignmentPollDefault100PercentBase

func (r *Request) Meeting_AssignmentPollDefault100PercentBase(meetingID int) *ValueString

func (*Request) Meeting_AssignmentPollDefaultBackend

func (r *Request) Meeting_AssignmentPollDefaultBackend(meetingID int) *ValueString

func (*Request) Meeting_AssignmentPollDefaultGroupIDs

func (r *Request) Meeting_AssignmentPollDefaultGroupIDs(meetingID int) *ValueIntSlice

func (*Request) Meeting_AssignmentPollDefaultMethod

func (r *Request) Meeting_AssignmentPollDefaultMethod(meetingID int) *ValueString

func (*Request) Meeting_AssignmentPollDefaultType

func (r *Request) Meeting_AssignmentPollDefaultType(meetingID int) *ValueString

func (*Request) Meeting_AssignmentPollSortPollResultByVotes

func (r *Request) Meeting_AssignmentPollSortPollResultByVotes(meetingID int) *ValueBool

func (*Request) Meeting_AssignmentsExportPreamble

func (r *Request) Meeting_AssignmentsExportPreamble(meetingID int) *ValueString

func (*Request) Meeting_AssignmentsExportTitle

func (r *Request) Meeting_AssignmentsExportTitle(meetingID int) *ValueString

func (*Request) Meeting_ChatGroupIDs

func (r *Request) Meeting_ChatGroupIDs(meetingID int) *ValueIntSlice

func (*Request) Meeting_ChatMessageIDs

func (r *Request) Meeting_ChatMessageIDs(meetingID int) *ValueIntSlice

func (*Request) Meeting_CommitteeID

func (r *Request) Meeting_CommitteeID(meetingID int) *ValueInt

func (*Request) Meeting_ConferenceAutoConnect

func (r *Request) Meeting_ConferenceAutoConnect(meetingID int) *ValueBool

func (*Request) Meeting_ConferenceAutoConnectNextSpeakers

func (r *Request) Meeting_ConferenceAutoConnectNextSpeakers(meetingID int) *ValueInt

func (*Request) Meeting_ConferenceEnableHelpdesk

func (r *Request) Meeting_ConferenceEnableHelpdesk(meetingID int) *ValueBool

func (*Request) Meeting_ConferenceLosRestriction

func (r *Request) Meeting_ConferenceLosRestriction(meetingID int) *ValueBool

func (*Request) Meeting_ConferenceOpenMicrophone

func (r *Request) Meeting_ConferenceOpenMicrophone(meetingID int) *ValueBool

func (*Request) Meeting_ConferenceOpenVideo

func (r *Request) Meeting_ConferenceOpenVideo(meetingID int) *ValueBool

func (*Request) Meeting_ConferenceShow

func (r *Request) Meeting_ConferenceShow(meetingID int) *ValueBool

func (*Request) Meeting_ConferenceStreamPosterUrl

func (r *Request) Meeting_ConferenceStreamPosterUrl(meetingID int) *ValueString

func (*Request) Meeting_ConferenceStreamUrl

func (r *Request) Meeting_ConferenceStreamUrl(meetingID int) *ValueString

func (*Request) Meeting_CustomTranslations

func (r *Request) Meeting_CustomTranslations(meetingID int) *ValueJSON

func (*Request) Meeting_DefaultGroupID

func (r *Request) Meeting_DefaultGroupID(meetingID int) *ValueInt

func (*Request) Meeting_DefaultMeetingForCommitteeID

func (r *Request) Meeting_DefaultMeetingForCommitteeID(meetingID int) *ValueMaybeInt

func (*Request) Meeting_DefaultProjectorID

func (r *Request) Meeting_DefaultProjectorID(meetingID int, replacement string) *ValueInt

func (*Request) Meeting_DefaultProjectorIDTmpl

func (r *Request) Meeting_DefaultProjectorIDTmpl(meetingID int) *ValueStringSlice

func (*Request) Meeting_Description

func (r *Request) Meeting_Description(meetingID int) *ValueString

func (*Request) Meeting_EnableAnonymous

func (r *Request) Meeting_EnableAnonymous(meetingID int) *ValueBool

func (*Request) Meeting_EnableChat

func (r *Request) Meeting_EnableChat(meetingID int) *ValueBool

func (*Request) Meeting_EndTime

func (r *Request) Meeting_EndTime(meetingID int) *ValueInt

func (*Request) Meeting_ExportCsvEncoding

func (r *Request) Meeting_ExportCsvEncoding(meetingID int) *ValueString

func (*Request) Meeting_ExportCsvSeparator

func (r *Request) Meeting_ExportCsvSeparator(meetingID int) *ValueString

func (*Request) Meeting_ExportPdfFontsize

func (r *Request) Meeting_ExportPdfFontsize(meetingID int) *ValueInt

func (*Request) Meeting_ExportPdfPagenumberAlignment

func (r *Request) Meeting_ExportPdfPagenumberAlignment(meetingID int) *ValueString

func (*Request) Meeting_ExportPdfPagesize

func (r *Request) Meeting_ExportPdfPagesize(meetingID int) *ValueString

func (*Request) Meeting_FontID

func (r *Request) Meeting_FontID(meetingID int, replacement string) *ValueInt

func (*Request) Meeting_FontIDTmpl

func (r *Request) Meeting_FontIDTmpl(meetingID int) *ValueStringSlice

func (*Request) Meeting_GroupIDs

func (r *Request) Meeting_GroupIDs(meetingID int) *ValueIntSlice

func (*Request) Meeting_ID

func (r *Request) Meeting_ID(meetingID int) *ValueInt

func (*Request) Meeting_ImportedAt

func (r *Request) Meeting_ImportedAt(meetingID int) *ValueInt

func (*Request) Meeting_IsActiveInOrganizationID

func (r *Request) Meeting_IsActiveInOrganizationID(meetingID int) *ValueMaybeInt

func (*Request) Meeting_JitsiDomain

func (r *Request) Meeting_JitsiDomain(meetingID int) *ValueString

func (*Request) Meeting_JitsiRoomName

func (r *Request) Meeting_JitsiRoomName(meetingID int) *ValueString

func (*Request) Meeting_JitsiRoomPassword

func (r *Request) Meeting_JitsiRoomPassword(meetingID int) *ValueString

func (*Request) Meeting_ListOfSpeakersAmountLastOnProjector

func (r *Request) Meeting_ListOfSpeakersAmountLastOnProjector(meetingID int) *ValueInt

func (*Request) Meeting_ListOfSpeakersAmountNextOnProjector

func (r *Request) Meeting_ListOfSpeakersAmountNextOnProjector(meetingID int) *ValueInt

func (*Request) Meeting_ListOfSpeakersCanSetContributionSelf

func (r *Request) Meeting_ListOfSpeakersCanSetContributionSelf(meetingID int) *ValueBool

func (*Request) Meeting_ListOfSpeakersCountdownID

func (r *Request) Meeting_ListOfSpeakersCountdownID(meetingID int) *ValueMaybeInt

func (*Request) Meeting_ListOfSpeakersCoupleCountdown

func (r *Request) Meeting_ListOfSpeakersCoupleCountdown(meetingID int) *ValueBool

func (*Request) Meeting_ListOfSpeakersEnablePointOfOrderSpeakers

func (r *Request) Meeting_ListOfSpeakersEnablePointOfOrderSpeakers(meetingID int) *ValueBool

func (*Request) Meeting_ListOfSpeakersEnableProContraSpeech

func (r *Request) Meeting_ListOfSpeakersEnableProContraSpeech(meetingID int) *ValueBool

func (*Request) Meeting_ListOfSpeakersIDs

func (r *Request) Meeting_ListOfSpeakersIDs(meetingID int) *ValueIntSlice

func (*Request) Meeting_ListOfSpeakersInitiallyClosed

func (r *Request) Meeting_ListOfSpeakersInitiallyClosed(meetingID int) *ValueBool

func (*Request) Meeting_ListOfSpeakersPresentUsersOnly

func (r *Request) Meeting_ListOfSpeakersPresentUsersOnly(meetingID int) *ValueBool

func (*Request) Meeting_ListOfSpeakersShowAmountOfSpeakersOnSlide

func (r *Request) Meeting_ListOfSpeakersShowAmountOfSpeakersOnSlide(meetingID int) *ValueBool

func (*Request) Meeting_ListOfSpeakersShowFirstContribution

func (r *Request) Meeting_ListOfSpeakersShowFirstContribution(meetingID int) *ValueBool

func (*Request) Meeting_ListOfSpeakersSpeakerNoteForEveryone

func (r *Request) Meeting_ListOfSpeakersSpeakerNoteForEveryone(meetingID int) *ValueBool

func (*Request) Meeting_Location

func (r *Request) Meeting_Location(meetingID int) *ValueString

func (*Request) Meeting_LogoID

func (r *Request) Meeting_LogoID(meetingID int, replacement string) *ValueInt

func (*Request) Meeting_LogoIDTmpl

func (r *Request) Meeting_LogoIDTmpl(meetingID int) *ValueStringSlice

func (*Request) Meeting_MediafileIDs

func (r *Request) Meeting_MediafileIDs(meetingID int) *ValueIntSlice

func (*Request) Meeting_MotionBlockIDs

func (r *Request) Meeting_MotionBlockIDs(meetingID int) *ValueIntSlice

func (*Request) Meeting_MotionCategoryIDs

func (r *Request) Meeting_MotionCategoryIDs(meetingID int) *ValueIntSlice

func (*Request) Meeting_MotionChangeRecommendationIDs

func (r *Request) Meeting_MotionChangeRecommendationIDs(meetingID int) *ValueIntSlice

func (*Request) Meeting_MotionCommentIDs

func (r *Request) Meeting_MotionCommentIDs(meetingID int) *ValueIntSlice

func (*Request) Meeting_MotionCommentSectionIDs

func (r *Request) Meeting_MotionCommentSectionIDs(meetingID int) *ValueIntSlice

func (*Request) Meeting_MotionIDs

func (r *Request) Meeting_MotionIDs(meetingID int) *ValueIntSlice

func (*Request) Meeting_MotionPollBallotPaperNumber

func (r *Request) Meeting_MotionPollBallotPaperNumber(meetingID int) *ValueInt

func (*Request) Meeting_MotionPollBallotPaperSelection

func (r *Request) Meeting_MotionPollBallotPaperSelection(meetingID int) *ValueString

func (*Request) Meeting_MotionPollDefault100PercentBase

func (r *Request) Meeting_MotionPollDefault100PercentBase(meetingID int) *ValueString

func (*Request) Meeting_MotionPollDefaultBackend

func (r *Request) Meeting_MotionPollDefaultBackend(meetingID int) *ValueString

func (*Request) Meeting_MotionPollDefaultGroupIDs

func (r *Request) Meeting_MotionPollDefaultGroupIDs(meetingID int) *ValueIntSlice

func (*Request) Meeting_MotionPollDefaultType

func (r *Request) Meeting_MotionPollDefaultType(meetingID int) *ValueString

func (*Request) Meeting_MotionStateIDs

func (r *Request) Meeting_MotionStateIDs(meetingID int) *ValueIntSlice

func (*Request) Meeting_MotionStatuteParagraphIDs

func (r *Request) Meeting_MotionStatuteParagraphIDs(meetingID int) *ValueIntSlice

func (*Request) Meeting_MotionSubmitterIDs

func (r *Request) Meeting_MotionSubmitterIDs(meetingID int) *ValueIntSlice

func (*Request) Meeting_MotionWorkflowIDs

func (r *Request) Meeting_MotionWorkflowIDs(meetingID int) *ValueIntSlice

func (*Request) Meeting_MotionsAmendmentsEnabled

func (r *Request) Meeting_MotionsAmendmentsEnabled(meetingID int) *ValueBool

func (*Request) Meeting_MotionsAmendmentsInMainList

func (r *Request) Meeting_MotionsAmendmentsInMainList(meetingID int) *ValueBool

func (*Request) Meeting_MotionsAmendmentsMultipleParagraphs

func (r *Request) Meeting_MotionsAmendmentsMultipleParagraphs(meetingID int) *ValueBool

func (*Request) Meeting_MotionsAmendmentsOfAmendments

func (r *Request) Meeting_MotionsAmendmentsOfAmendments(meetingID int) *ValueBool

func (*Request) Meeting_MotionsAmendmentsPrefix

func (r *Request) Meeting_MotionsAmendmentsPrefix(meetingID int) *ValueString

func (*Request) Meeting_MotionsAmendmentsTextMode

func (r *Request) Meeting_MotionsAmendmentsTextMode(meetingID int) *ValueString

func (*Request) Meeting_MotionsDefaultAmendmentWorkflowID

func (r *Request) Meeting_MotionsDefaultAmendmentWorkflowID(meetingID int) *ValueInt

func (*Request) Meeting_MotionsDefaultLineNumbering

func (r *Request) Meeting_MotionsDefaultLineNumbering(meetingID int) *ValueString

func (*Request) Meeting_MotionsDefaultSorting

func (r *Request) Meeting_MotionsDefaultSorting(meetingID int) *ValueString

func (*Request) Meeting_MotionsDefaultStatuteAmendmentWorkflowID

func (r *Request) Meeting_MotionsDefaultStatuteAmendmentWorkflowID(meetingID int) *ValueInt

func (*Request) Meeting_MotionsDefaultWorkflowID

func (r *Request) Meeting_MotionsDefaultWorkflowID(meetingID int) *ValueInt

func (*Request) Meeting_MotionsEnableReasonOnProjector

func (r *Request) Meeting_MotionsEnableReasonOnProjector(meetingID int) *ValueBool

func (*Request) Meeting_MotionsEnableRecommendationOnProjector

func (r *Request) Meeting_MotionsEnableRecommendationOnProjector(meetingID int) *ValueBool

func (*Request) Meeting_MotionsEnableSideboxOnProjector

func (r *Request) Meeting_MotionsEnableSideboxOnProjector(meetingID int) *ValueBool

func (*Request) Meeting_MotionsEnableTextOnProjector

func (r *Request) Meeting_MotionsEnableTextOnProjector(meetingID int) *ValueBool

func (*Request) Meeting_MotionsExportFollowRecommendation

func (r *Request) Meeting_MotionsExportFollowRecommendation(meetingID int) *ValueBool

func (*Request) Meeting_MotionsExportPreamble

func (r *Request) Meeting_MotionsExportPreamble(meetingID int) *ValueString

func (*Request) Meeting_MotionsExportSubmitterRecommendation

func (r *Request) Meeting_MotionsExportSubmitterRecommendation(meetingID int) *ValueBool

func (*Request) Meeting_MotionsExportTitle

func (r *Request) Meeting_MotionsExportTitle(meetingID int) *ValueString

func (*Request) Meeting_MotionsLineLength

func (r *Request) Meeting_MotionsLineLength(meetingID int) *ValueInt

func (*Request) Meeting_MotionsNumberMinDigits

func (r *Request) Meeting_MotionsNumberMinDigits(meetingID int) *ValueInt

func (*Request) Meeting_MotionsNumberType

func (r *Request) Meeting_MotionsNumberType(meetingID int) *ValueString

func (*Request) Meeting_MotionsNumberWithBlank

func (r *Request) Meeting_MotionsNumberWithBlank(meetingID int) *ValueBool

func (*Request) Meeting_MotionsPreamble

func (r *Request) Meeting_MotionsPreamble(meetingID int) *ValueString

func (*Request) Meeting_MotionsReasonRequired

func (r *Request) Meeting_MotionsReasonRequired(meetingID int) *ValueBool

func (*Request) Meeting_MotionsRecommendationTextMode

func (r *Request) Meeting_MotionsRecommendationTextMode(meetingID int) *ValueString

func (*Request) Meeting_MotionsRecommendationsBy

func (r *Request) Meeting_MotionsRecommendationsBy(meetingID int) *ValueString

func (*Request) Meeting_MotionsShowReferringMotions

func (r *Request) Meeting_MotionsShowReferringMotions(meetingID int) *ValueBool

func (*Request) Meeting_MotionsShowSequentialNumber

func (r *Request) Meeting_MotionsShowSequentialNumber(meetingID int) *ValueBool

func (*Request) Meeting_MotionsStatuteRecommendationsBy

func (r *Request) Meeting_MotionsStatuteRecommendationsBy(meetingID int) *ValueString

func (*Request) Meeting_MotionsStatutesEnabled

func (r *Request) Meeting_MotionsStatutesEnabled(meetingID int) *ValueBool

func (*Request) Meeting_MotionsSupportersMinAmount

func (r *Request) Meeting_MotionsSupportersMinAmount(meetingID int) *ValueInt

func (*Request) Meeting_Name

func (r *Request) Meeting_Name(meetingID int) *ValueString

func (*Request) Meeting_OptionIDs

func (r *Request) Meeting_OptionIDs(meetingID int) *ValueIntSlice

func (*Request) Meeting_OrganizationTagIDs

func (r *Request) Meeting_OrganizationTagIDs(meetingID int) *ValueIntSlice

func (*Request) Meeting_PersonalNoteIDs

func (r *Request) Meeting_PersonalNoteIDs(meetingID int) *ValueIntSlice

func (*Request) Meeting_PollBallotPaperNumber

func (r *Request) Meeting_PollBallotPaperNumber(meetingID int) *ValueInt

func (*Request) Meeting_PollBallotPaperSelection

func (r *Request) Meeting_PollBallotPaperSelection(meetingID int) *ValueString

func (*Request) Meeting_PollCountdownID

func (r *Request) Meeting_PollCountdownID(meetingID int) *ValueMaybeInt

func (*Request) Meeting_PollCoupleCountdown

func (r *Request) Meeting_PollCoupleCountdown(meetingID int) *ValueBool

func (*Request) Meeting_PollDefault100PercentBase

func (r *Request) Meeting_PollDefault100PercentBase(meetingID int) *ValueString

func (*Request) Meeting_PollDefaultBackend

func (r *Request) Meeting_PollDefaultBackend(meetingID int) *ValueString

func (*Request) Meeting_PollDefaultGroupIDs

func (r *Request) Meeting_PollDefaultGroupIDs(meetingID int) *ValueIntSlice

func (*Request) Meeting_PollDefaultMethod

func (r *Request) Meeting_PollDefaultMethod(meetingID int) *ValueString

func (*Request) Meeting_PollDefaultType

func (r *Request) Meeting_PollDefaultType(meetingID int) *ValueString

func (*Request) Meeting_PollIDs

func (r *Request) Meeting_PollIDs(meetingID int) *ValueIntSlice

func (*Request) Meeting_PollSortPollResultByVotes

func (r *Request) Meeting_PollSortPollResultByVotes(meetingID int) *ValueBool

func (*Request) Meeting_PresentUserIDs

func (r *Request) Meeting_PresentUserIDs(meetingID int) *ValueIntSlice

func (*Request) Meeting_ProjectionIDs

func (r *Request) Meeting_ProjectionIDs(meetingID int) *ValueIntSlice

func (*Request) Meeting_ProjectorCountdownDefaultTime

func (r *Request) Meeting_ProjectorCountdownDefaultTime(meetingID int) *ValueInt

func (*Request) Meeting_ProjectorCountdownIDs

func (r *Request) Meeting_ProjectorCountdownIDs(meetingID int) *ValueIntSlice

func (*Request) Meeting_ProjectorCountdownWarningTime

func (r *Request) Meeting_ProjectorCountdownWarningTime(meetingID int) *ValueInt

func (*Request) Meeting_ProjectorIDs

func (r *Request) Meeting_ProjectorIDs(meetingID int) *ValueIntSlice

func (*Request) Meeting_ProjectorMessageIDs

func (r *Request) Meeting_ProjectorMessageIDs(meetingID int) *ValueIntSlice

func (*Request) Meeting_ReferenceProjectorID

func (r *Request) Meeting_ReferenceProjectorID(meetingID int) *ValueInt

func (*Request) Meeting_SpeakerIDs

func (r *Request) Meeting_SpeakerIDs(meetingID int) *ValueIntSlice

func (*Request) Meeting_StartTime

func (r *Request) Meeting_StartTime(meetingID int) *ValueInt

func (*Request) Meeting_TagIDs

func (r *Request) Meeting_TagIDs(meetingID int) *ValueIntSlice

func (*Request) Meeting_TemplateForCommitteeID

func (r *Request) Meeting_TemplateForCommitteeID(meetingID int) *ValueMaybeInt

func (*Request) Meeting_TopicIDs

func (r *Request) Meeting_TopicIDs(meetingID int) *ValueIntSlice

func (*Request) Meeting_UrlName

func (r *Request) Meeting_UrlName(meetingID int) *ValueString

func (*Request) Meeting_UserIDs

func (r *Request) Meeting_UserIDs(meetingID int) *ValueIntSlice

func (*Request) Meeting_UsersAllowSelfSetPresent

func (r *Request) Meeting_UsersAllowSelfSetPresent(meetingID int) *ValueBool

func (*Request) Meeting_UsersEmailBody

func (r *Request) Meeting_UsersEmailBody(meetingID int) *ValueString

func (*Request) Meeting_UsersEmailReplyto

func (r *Request) Meeting_UsersEmailReplyto(meetingID int) *ValueString

func (*Request) Meeting_UsersEmailSender

func (r *Request) Meeting_UsersEmailSender(meetingID int) *ValueString

func (*Request) Meeting_UsersEmailSubject

func (r *Request) Meeting_UsersEmailSubject(meetingID int) *ValueString

func (*Request) Meeting_UsersEnablePresenceView

func (r *Request) Meeting_UsersEnablePresenceView(meetingID int) *ValueBool

func (*Request) Meeting_UsersEnableVoteWeight

func (r *Request) Meeting_UsersEnableVoteWeight(meetingID int) *ValueBool

func (*Request) Meeting_UsersPdfUrl

func (r *Request) Meeting_UsersPdfUrl(meetingID int) *ValueString

func (*Request) Meeting_UsersPdfWelcometext

func (r *Request) Meeting_UsersPdfWelcometext(meetingID int) *ValueString

func (*Request) Meeting_UsersPdfWelcometitle

func (r *Request) Meeting_UsersPdfWelcometitle(meetingID int) *ValueString

func (*Request) Meeting_UsersPdfWlanEncryption

func (r *Request) Meeting_UsersPdfWlanEncryption(meetingID int) *ValueString

func (*Request) Meeting_UsersPdfWlanPassword

func (r *Request) Meeting_UsersPdfWlanPassword(meetingID int) *ValueString

func (*Request) Meeting_UsersPdfWlanSsid

func (r *Request) Meeting_UsersPdfWlanSsid(meetingID int) *ValueString

func (*Request) Meeting_UsersSortBy

func (r *Request) Meeting_UsersSortBy(meetingID int) *ValueString

func (*Request) Meeting_VoteIDs

func (r *Request) Meeting_VoteIDs(meetingID int) *ValueIntSlice

func (*Request) Meeting_WelcomeText

func (r *Request) Meeting_WelcomeText(meetingID int) *ValueString

func (*Request) Meeting_WelcomeTitle

func (r *Request) Meeting_WelcomeTitle(meetingID int) *ValueString

func (*Request) MotionBlock_AgendaItemID

func (r *Request) MotionBlock_AgendaItemID(motionBlockID int) *ValueMaybeInt

func (*Request) MotionBlock_ID

func (r *Request) MotionBlock_ID(motionBlockID int) *ValueInt

func (*Request) MotionBlock_Internal

func (r *Request) MotionBlock_Internal(motionBlockID int) *ValueBool

func (*Request) MotionBlock_ListOfSpeakersID

func (r *Request) MotionBlock_ListOfSpeakersID(motionBlockID int) *ValueInt

func (*Request) MotionBlock_MeetingID

func (r *Request) MotionBlock_MeetingID(motionBlockID int) *ValueInt

func (*Request) MotionBlock_MotionIDs

func (r *Request) MotionBlock_MotionIDs(motionBlockID int) *ValueIntSlice

func (*Request) MotionBlock_ProjectionIDs

func (r *Request) MotionBlock_ProjectionIDs(motionBlockID int) *ValueIntSlice

func (*Request) MotionBlock_Title

func (r *Request) MotionBlock_Title(motionBlockID int) *ValueString

func (*Request) MotionCategory_ChildIDs

func (r *Request) MotionCategory_ChildIDs(motionCategoryID int) *ValueIntSlice

func (*Request) MotionCategory_ID

func (r *Request) MotionCategory_ID(motionCategoryID int) *ValueInt

func (*Request) MotionCategory_Level

func (r *Request) MotionCategory_Level(motionCategoryID int) *ValueInt

func (*Request) MotionCategory_MeetingID

func (r *Request) MotionCategory_MeetingID(motionCategoryID int) *ValueInt

func (*Request) MotionCategory_MotionIDs

func (r *Request) MotionCategory_MotionIDs(motionCategoryID int) *ValueIntSlice

func (*Request) MotionCategory_Name

func (r *Request) MotionCategory_Name(motionCategoryID int) *ValueString

func (*Request) MotionCategory_ParentID

func (r *Request) MotionCategory_ParentID(motionCategoryID int) *ValueMaybeInt

func (*Request) MotionCategory_Prefix

func (r *Request) MotionCategory_Prefix(motionCategoryID int) *ValueString

func (*Request) MotionCategory_Weight

func (r *Request) MotionCategory_Weight(motionCategoryID int) *ValueInt

func (*Request) MotionChangeRecommendation_CreationTime

func (r *Request) MotionChangeRecommendation_CreationTime(motionChangeRecommendationID int) *ValueInt

func (*Request) MotionChangeRecommendation_ID

func (r *Request) MotionChangeRecommendation_ID(motionChangeRecommendationID int) *ValueInt

func (*Request) MotionChangeRecommendation_Internal

func (r *Request) MotionChangeRecommendation_Internal(motionChangeRecommendationID int) *ValueBool

func (*Request) MotionChangeRecommendation_LineFrom

func (r *Request) MotionChangeRecommendation_LineFrom(motionChangeRecommendationID int) *ValueInt

func (*Request) MotionChangeRecommendation_LineTo

func (r *Request) MotionChangeRecommendation_LineTo(motionChangeRecommendationID int) *ValueInt

func (*Request) MotionChangeRecommendation_MeetingID

func (r *Request) MotionChangeRecommendation_MeetingID(motionChangeRecommendationID int) *ValueInt

func (*Request) MotionChangeRecommendation_MotionID

func (r *Request) MotionChangeRecommendation_MotionID(motionChangeRecommendationID int) *ValueInt

func (*Request) MotionChangeRecommendation_OtherDescription

func (r *Request) MotionChangeRecommendation_OtherDescription(motionChangeRecommendationID int) *ValueString

func (*Request) MotionChangeRecommendation_Rejected

func (r *Request) MotionChangeRecommendation_Rejected(motionChangeRecommendationID int) *ValueBool

func (*Request) MotionChangeRecommendation_Text

func (r *Request) MotionChangeRecommendation_Text(motionChangeRecommendationID int) *ValueString

func (*Request) MotionChangeRecommendation_Type

func (r *Request) MotionChangeRecommendation_Type(motionChangeRecommendationID int) *ValueString

func (*Request) MotionCommentSection_CommentIDs

func (r *Request) MotionCommentSection_CommentIDs(motionCommentSectionID int) *ValueIntSlice

func (*Request) MotionCommentSection_ID

func (r *Request) MotionCommentSection_ID(motionCommentSectionID int) *ValueInt

func (*Request) MotionCommentSection_MeetingID

func (r *Request) MotionCommentSection_MeetingID(motionCommentSectionID int) *ValueInt

func (*Request) MotionCommentSection_Name

func (r *Request) MotionCommentSection_Name(motionCommentSectionID int) *ValueString

func (*Request) MotionCommentSection_ReadGroupIDs

func (r *Request) MotionCommentSection_ReadGroupIDs(motionCommentSectionID int) *ValueIntSlice

func (*Request) MotionCommentSection_Weight

func (r *Request) MotionCommentSection_Weight(motionCommentSectionID int) *ValueInt

func (*Request) MotionCommentSection_WriteGroupIDs

func (r *Request) MotionCommentSection_WriteGroupIDs(motionCommentSectionID int) *ValueIntSlice

func (*Request) MotionComment_Comment

func (r *Request) MotionComment_Comment(motionCommentID int) *ValueString

func (*Request) MotionComment_ID

func (r *Request) MotionComment_ID(motionCommentID int) *ValueInt

func (*Request) MotionComment_MeetingID

func (r *Request) MotionComment_MeetingID(motionCommentID int) *ValueInt

func (*Request) MotionComment_MotionID

func (r *Request) MotionComment_MotionID(motionCommentID int) *ValueInt

func (*Request) MotionComment_SectionID

func (r *Request) MotionComment_SectionID(motionCommentID int) *ValueInt

func (*Request) MotionState_AllowCreatePoll

func (r *Request) MotionState_AllowCreatePoll(motionStateID int) *ValueBool

func (*Request) MotionState_AllowSubmitterEdit

func (r *Request) MotionState_AllowSubmitterEdit(motionStateID int) *ValueBool

func (*Request) MotionState_AllowSupport

func (r *Request) MotionState_AllowSupport(motionStateID int) *ValueBool

func (*Request) MotionState_CssClass

func (r *Request) MotionState_CssClass(motionStateID int) *ValueString

func (*Request) MotionState_FirstStateOfWorkflowID

func (r *Request) MotionState_FirstStateOfWorkflowID(motionStateID int) *ValueMaybeInt

func (*Request) MotionState_ID

func (r *Request) MotionState_ID(motionStateID int) *ValueInt

func (*Request) MotionState_MeetingID

func (r *Request) MotionState_MeetingID(motionStateID int) *ValueInt

func (*Request) MotionState_MergeAmendmentIntoFinal

func (r *Request) MotionState_MergeAmendmentIntoFinal(motionStateID int) *ValueString

func (*Request) MotionState_MotionIDs

func (r *Request) MotionState_MotionIDs(motionStateID int) *ValueIntSlice

func (*Request) MotionState_MotionRecommendationIDs

func (r *Request) MotionState_MotionRecommendationIDs(motionStateID int) *ValueIntSlice

func (*Request) MotionState_Name

func (r *Request) MotionState_Name(motionStateID int) *ValueString

func (*Request) MotionState_NextStateIDs

func (r *Request) MotionState_NextStateIDs(motionStateID int) *ValueIntSlice

func (*Request) MotionState_PreviousStateIDs

func (r *Request) MotionState_PreviousStateIDs(motionStateID int) *ValueIntSlice

func (*Request) MotionState_RecommendationLabel

func (r *Request) MotionState_RecommendationLabel(motionStateID int) *ValueString

func (*Request) MotionState_Restrictions

func (r *Request) MotionState_Restrictions(motionStateID int) *ValueStringSlice

func (*Request) MotionState_SetNumber

func (r *Request) MotionState_SetNumber(motionStateID int) *ValueBool

func (*Request) MotionState_ShowRecommendationExtensionField

func (r *Request) MotionState_ShowRecommendationExtensionField(motionStateID int) *ValueBool

func (*Request) MotionState_ShowStateExtensionField

func (r *Request) MotionState_ShowStateExtensionField(motionStateID int) *ValueBool

func (*Request) MotionState_Weight

func (r *Request) MotionState_Weight(motionStateID int) *ValueInt

func (*Request) MotionState_WorkflowID

func (r *Request) MotionState_WorkflowID(motionStateID int) *ValueInt

func (*Request) MotionStatuteParagraph_ID

func (r *Request) MotionStatuteParagraph_ID(motionStatuteParagraphID int) *ValueInt

func (*Request) MotionStatuteParagraph_MeetingID

func (r *Request) MotionStatuteParagraph_MeetingID(motionStatuteParagraphID int) *ValueInt

func (*Request) MotionStatuteParagraph_MotionIDs

func (r *Request) MotionStatuteParagraph_MotionIDs(motionStatuteParagraphID int) *ValueIntSlice

func (*Request) MotionStatuteParagraph_Text

func (r *Request) MotionStatuteParagraph_Text(motionStatuteParagraphID int) *ValueString

func (*Request) MotionStatuteParagraph_Title

func (r *Request) MotionStatuteParagraph_Title(motionStatuteParagraphID int) *ValueString

func (*Request) MotionStatuteParagraph_Weight

func (r *Request) MotionStatuteParagraph_Weight(motionStatuteParagraphID int) *ValueInt

func (*Request) MotionSubmitter_ID

func (r *Request) MotionSubmitter_ID(motionSubmitterID int) *ValueInt

func (*Request) MotionSubmitter_MeetingID

func (r *Request) MotionSubmitter_MeetingID(motionSubmitterID int) *ValueInt

func (*Request) MotionSubmitter_MotionID

func (r *Request) MotionSubmitter_MotionID(motionSubmitterID int) *ValueInt

func (*Request) MotionSubmitter_UserID

func (r *Request) MotionSubmitter_UserID(motionSubmitterID int) *ValueInt

func (*Request) MotionSubmitter_Weight

func (r *Request) MotionSubmitter_Weight(motionSubmitterID int) *ValueInt

func (*Request) MotionWorkflow_DefaultAmendmentWorkflowMeetingID

func (r *Request) MotionWorkflow_DefaultAmendmentWorkflowMeetingID(motionWorkflowID int) *ValueMaybeInt

func (*Request) MotionWorkflow_DefaultStatuteAmendmentWorkflowMeetingID

func (r *Request) MotionWorkflow_DefaultStatuteAmendmentWorkflowMeetingID(motionWorkflowID int) *ValueMaybeInt

func (*Request) MotionWorkflow_DefaultWorkflowMeetingID

func (r *Request) MotionWorkflow_DefaultWorkflowMeetingID(motionWorkflowID int) *ValueMaybeInt

func (*Request) MotionWorkflow_FirstStateID

func (r *Request) MotionWorkflow_FirstStateID(motionWorkflowID int) *ValueInt

func (*Request) MotionWorkflow_ID

func (r *Request) MotionWorkflow_ID(motionWorkflowID int) *ValueInt

func (*Request) MotionWorkflow_MeetingID

func (r *Request) MotionWorkflow_MeetingID(motionWorkflowID int) *ValueInt

func (*Request) MotionWorkflow_Name

func (r *Request) MotionWorkflow_Name(motionWorkflowID int) *ValueString

func (*Request) MotionWorkflow_StateIDs

func (r *Request) MotionWorkflow_StateIDs(motionWorkflowID int) *ValueIntSlice

func (*Request) Motion_AgendaItemID

func (r *Request) Motion_AgendaItemID(motionID int) *ValueMaybeInt

func (*Request) Motion_AllDerivedMotionIDs

func (r *Request) Motion_AllDerivedMotionIDs(motionID int) *ValueIntSlice

func (*Request) Motion_AllOriginIDs

func (r *Request) Motion_AllOriginIDs(motionID int) *ValueIntSlice

func (*Request) Motion_AmendmentIDs

func (r *Request) Motion_AmendmentIDs(motionID int) *ValueIntSlice

func (*Request) Motion_AmendmentParagraph

func (r *Request) Motion_AmendmentParagraph(motionID int, replacement string) *ValueString

func (*Request) Motion_AmendmentParagraphTmpl

func (r *Request) Motion_AmendmentParagraphTmpl(motionID int) *ValueStringSlice

func (*Request) Motion_AttachmentIDs

func (r *Request) Motion_AttachmentIDs(motionID int) *ValueIntSlice

func (*Request) Motion_BlockID

func (r *Request) Motion_BlockID(motionID int) *ValueMaybeInt

func (*Request) Motion_CategoryID

func (r *Request) Motion_CategoryID(motionID int) *ValueMaybeInt

func (*Request) Motion_CategoryWeight

func (r *Request) Motion_CategoryWeight(motionID int) *ValueInt

func (*Request) Motion_ChangeRecommendationIDs

func (r *Request) Motion_ChangeRecommendationIDs(motionID int) *ValueIntSlice

func (*Request) Motion_CommentIDs

func (r *Request) Motion_CommentIDs(motionID int) *ValueIntSlice

func (*Request) Motion_Created

func (r *Request) Motion_Created(motionID int) *ValueInt

func (*Request) Motion_DerivedMotionIDs

func (r *Request) Motion_DerivedMotionIDs(motionID int) *ValueIntSlice

func (*Request) Motion_ID

func (r *Request) Motion_ID(motionID int) *ValueInt

func (*Request) Motion_LastModified

func (r *Request) Motion_LastModified(motionID int) *ValueInt

func (*Request) Motion_LeadMotionID

func (r *Request) Motion_LeadMotionID(motionID int) *ValueMaybeInt

func (*Request) Motion_ListOfSpeakersID

func (r *Request) Motion_ListOfSpeakersID(motionID int) *ValueInt

func (*Request) Motion_MeetingID

func (r *Request) Motion_MeetingID(motionID int) *ValueInt

func (*Request) Motion_ModifiedFinalVersion

func (r *Request) Motion_ModifiedFinalVersion(motionID int) *ValueString

func (*Request) Motion_Number

func (r *Request) Motion_Number(motionID int) *ValueString

func (*Request) Motion_NumberValue

func (r *Request) Motion_NumberValue(motionID int) *ValueInt

func (*Request) Motion_OptionIDs

func (r *Request) Motion_OptionIDs(motionID int) *ValueIntSlice

func (*Request) Motion_OriginID

func (r *Request) Motion_OriginID(motionID int) *ValueMaybeInt

func (*Request) Motion_PersonalNoteIDs

func (r *Request) Motion_PersonalNoteIDs(motionID int) *ValueIntSlice

func (*Request) Motion_PollIDs

func (r *Request) Motion_PollIDs(motionID int) *ValueIntSlice

func (*Request) Motion_ProjectionIDs

func (r *Request) Motion_ProjectionIDs(motionID int) *ValueIntSlice

func (*Request) Motion_Reason

func (r *Request) Motion_Reason(motionID int) *ValueString

func (*Request) Motion_RecommendationExtension

func (r *Request) Motion_RecommendationExtension(motionID int) *ValueString

func (*Request) Motion_RecommendationExtensionReferenceIDs

func (r *Request) Motion_RecommendationExtensionReferenceIDs(motionID int) *ValueStringSlice

func (*Request) Motion_RecommendationID

func (r *Request) Motion_RecommendationID(motionID int) *ValueMaybeInt

func (*Request) Motion_ReferencedInMotionRecommendationExtensionIDs

func (r *Request) Motion_ReferencedInMotionRecommendationExtensionIDs(motionID int) *ValueIntSlice

func (*Request) Motion_SequentialNumber

func (r *Request) Motion_SequentialNumber(motionID int) *ValueInt

func (*Request) Motion_SortChildIDs

func (r *Request) Motion_SortChildIDs(motionID int) *ValueIntSlice

func (*Request) Motion_SortParentID

func (r *Request) Motion_SortParentID(motionID int) *ValueMaybeInt

func (*Request) Motion_SortWeight

func (r *Request) Motion_SortWeight(motionID int) *ValueInt

func (*Request) Motion_StateExtension

func (r *Request) Motion_StateExtension(motionID int) *ValueString

func (*Request) Motion_StateID

func (r *Request) Motion_StateID(motionID int) *ValueInt

func (*Request) Motion_StatuteParagraphID

func (r *Request) Motion_StatuteParagraphID(motionID int) *ValueMaybeInt

func (*Request) Motion_SubmitterIDs

func (r *Request) Motion_SubmitterIDs(motionID int) *ValueIntSlice

func (*Request) Motion_SupporterIDs

func (r *Request) Motion_SupporterIDs(motionID int) *ValueIntSlice

func (*Request) Motion_TagIDs

func (r *Request) Motion_TagIDs(motionID int) *ValueIntSlice

func (*Request) Motion_Text

func (r *Request) Motion_Text(motionID int) *ValueString

func (*Request) Motion_Title

func (r *Request) Motion_Title(motionID int) *ValueString

func (*Request) Option_Abstain

func (r *Request) Option_Abstain(optionID int) *ValueString

func (*Request) Option_ContentObjectID

func (r *Request) Option_ContentObjectID(optionID int) *ValueMaybeString

func (*Request) Option_ID

func (r *Request) Option_ID(optionID int) *ValueInt

func (*Request) Option_MeetingID

func (r *Request) Option_MeetingID(optionID int) *ValueInt

func (*Request) Option_No

func (r *Request) Option_No(optionID int) *ValueString

func (*Request) Option_PollID

func (r *Request) Option_PollID(optionID int) *ValueMaybeInt

func (*Request) Option_Text

func (r *Request) Option_Text(optionID int) *ValueString

func (*Request) Option_UsedAsGlobalOptionInPollID

func (r *Request) Option_UsedAsGlobalOptionInPollID(optionID int) *ValueMaybeInt

func (*Request) Option_VoteIDs

func (r *Request) Option_VoteIDs(optionID int) *ValueIntSlice

func (*Request) Option_Weight

func (r *Request) Option_Weight(optionID int) *ValueInt

func (*Request) Option_Yes

func (r *Request) Option_Yes(optionID int) *ValueString

func (*Request) OrganizationTag_Color

func (r *Request) OrganizationTag_Color(organizationTagID int) *ValueString

func (*Request) OrganizationTag_ID

func (r *Request) OrganizationTag_ID(organizationTagID int) *ValueInt

func (*Request) OrganizationTag_Name

func (r *Request) OrganizationTag_Name(organizationTagID int) *ValueString

func (*Request) OrganizationTag_OrganizationID

func (r *Request) OrganizationTag_OrganizationID(organizationTagID int) *ValueInt

func (*Request) OrganizationTag_TaggedIDs

func (r *Request) OrganizationTag_TaggedIDs(organizationTagID int) *ValueStringSlice

func (*Request) Organization_ActiveMeetingIDs

func (r *Request) Organization_ActiveMeetingIDs(organizationID int) *ValueIntSlice

func (*Request) Organization_CommitteeIDs

func (r *Request) Organization_CommitteeIDs(organizationID int) *ValueIntSlice

func (*Request) Organization_Description

func (r *Request) Organization_Description(organizationID int) *ValueString

func (*Request) Organization_EnableChat

func (r *Request) Organization_EnableChat(organizationID int) *ValueBool

func (*Request) Organization_EnableElectronicVoting

func (r *Request) Organization_EnableElectronicVoting(organizationID int) *ValueBool

func (*Request) Organization_ID

func (r *Request) Organization_ID(organizationID int) *ValueInt

func (*Request) Organization_LegalNotice

func (r *Request) Organization_LegalNotice(organizationID int) *ValueString

func (*Request) Organization_LimitOfMeetings

func (r *Request) Organization_LimitOfMeetings(organizationID int) *ValueInt

func (*Request) Organization_LimitOfUsers

func (r *Request) Organization_LimitOfUsers(organizationID int) *ValueInt

func (*Request) Organization_LoginText

func (r *Request) Organization_LoginText(organizationID int) *ValueString

func (*Request) Organization_Name

func (r *Request) Organization_Name(organizationID int) *ValueString

func (*Request) Organization_OrganizationTagIDs

func (r *Request) Organization_OrganizationTagIDs(organizationID int) *ValueIntSlice

func (*Request) Organization_PrivacyPolicy

func (r *Request) Organization_PrivacyPolicy(organizationID int) *ValueString

func (*Request) Organization_ResetPasswordVerboseErrors

func (r *Request) Organization_ResetPasswordVerboseErrors(organizationID int) *ValueBool

func (*Request) Organization_ResourceIDs

func (r *Request) Organization_ResourceIDs(organizationID int) *ValueIntSlice

func (*Request) Organization_ThemeID

func (r *Request) Organization_ThemeID(organizationID int) *ValueInt

func (*Request) Organization_ThemeIDs

func (r *Request) Organization_ThemeIDs(organizationID int) *ValueIntSlice

func (*Request) Organization_Url

func (r *Request) Organization_Url(organizationID int) *ValueString

func (*Request) Organization_UsersEmailBody

func (r *Request) Organization_UsersEmailBody(organizationID int) *ValueString

func (*Request) Organization_UsersEmailReplyto

func (r *Request) Organization_UsersEmailReplyto(organizationID int) *ValueString

func (*Request) Organization_UsersEmailSender

func (r *Request) Organization_UsersEmailSender(organizationID int) *ValueString

func (*Request) Organization_UsersEmailSubject

func (r *Request) Organization_UsersEmailSubject(organizationID int) *ValueString

func (*Request) PersonalNote_ContentObjectID

func (r *Request) PersonalNote_ContentObjectID(personalNoteID int) *ValueMaybeString

func (*Request) PersonalNote_ID

func (r *Request) PersonalNote_ID(personalNoteID int) *ValueInt

func (*Request) PersonalNote_MeetingID

func (r *Request) PersonalNote_MeetingID(personalNoteID int) *ValueInt

func (*Request) PersonalNote_Note

func (r *Request) PersonalNote_Note(personalNoteID int) *ValueString

func (*Request) PersonalNote_Star

func (r *Request) PersonalNote_Star(personalNoteID int) *ValueBool

func (*Request) PersonalNote_UserID

func (r *Request) PersonalNote_UserID(personalNoteID int) *ValueInt

func (*Request) Poll_Backend

func (r *Request) Poll_Backend(pollID int) *ValueString

func (*Request) Poll_ContentObjectID

func (r *Request) Poll_ContentObjectID(pollID int) *ValueMaybeString

func (*Request) Poll_Description

func (r *Request) Poll_Description(pollID int) *ValueString

func (*Request) Poll_EntitledGroupIDs

func (r *Request) Poll_EntitledGroupIDs(pollID int) *ValueIntSlice

func (*Request) Poll_EntitledUsersAtStop

func (r *Request) Poll_EntitledUsersAtStop(pollID int) *ValueJSON

func (*Request) Poll_GlobalAbstain

func (r *Request) Poll_GlobalAbstain(pollID int) *ValueBool

func (*Request) Poll_GlobalNo

func (r *Request) Poll_GlobalNo(pollID int) *ValueBool

func (*Request) Poll_GlobalOptionID

func (r *Request) Poll_GlobalOptionID(pollID int) *ValueMaybeInt

func (*Request) Poll_GlobalYes

func (r *Request) Poll_GlobalYes(pollID int) *ValueBool

func (*Request) Poll_ID

func (r *Request) Poll_ID(pollID int) *ValueInt

func (*Request) Poll_IsPseudoanonymized

func (r *Request) Poll_IsPseudoanonymized(pollID int) *ValueBool

func (*Request) Poll_MaxVotesAmount

func (r *Request) Poll_MaxVotesAmount(pollID int) *ValueInt

func (*Request) Poll_MeetingID

func (r *Request) Poll_MeetingID(pollID int) *ValueInt

func (*Request) Poll_MinVotesAmount

func (r *Request) Poll_MinVotesAmount(pollID int) *ValueInt

func (*Request) Poll_OnehundredPercentBase

func (r *Request) Poll_OnehundredPercentBase(pollID int) *ValueString

func (*Request) Poll_OptionIDs

func (r *Request) Poll_OptionIDs(pollID int) *ValueIntSlice

func (*Request) Poll_Pollmethod

func (r *Request) Poll_Pollmethod(pollID int) *ValueString

func (*Request) Poll_ProjectionIDs

func (r *Request) Poll_ProjectionIDs(pollID int) *ValueIntSlice

func (*Request) Poll_State

func (r *Request) Poll_State(pollID int) *ValueString

func (*Request) Poll_Title

func (r *Request) Poll_Title(pollID int) *ValueString

func (*Request) Poll_Type

func (r *Request) Poll_Type(pollID int) *ValueString

func (*Request) Poll_VoteCount

func (r *Request) Poll_VoteCount(pollID int) *ValueInt

func (*Request) Poll_VotedIDs

func (r *Request) Poll_VotedIDs(pollID int) *ValueIntSlice

func (*Request) Poll_Votescast

func (r *Request) Poll_Votescast(pollID int) *ValueString

func (*Request) Poll_Votesinvalid

func (r *Request) Poll_Votesinvalid(pollID int) *ValueString

func (*Request) Poll_Votesvalid

func (r *Request) Poll_Votesvalid(pollID int) *ValueString

func (*Request) Projection_Content

func (r *Request) Projection_Content(projectionID int) *ValueJSON

func (*Request) Projection_ContentObjectID

func (r *Request) Projection_ContentObjectID(projectionID int) *ValueMaybeString

func (*Request) Projection_CurrentProjectorID

func (r *Request) Projection_CurrentProjectorID(projectionID int) *ValueMaybeInt

func (*Request) Projection_HistoryProjectorID

func (r *Request) Projection_HistoryProjectorID(projectionID int) *ValueMaybeInt

func (*Request) Projection_ID

func (r *Request) Projection_ID(projectionID int) *ValueInt

func (*Request) Projection_MeetingID

func (r *Request) Projection_MeetingID(projectionID int) *ValueInt

func (*Request) Projection_Options

func (r *Request) Projection_Options(projectionID int) *ValueJSON

func (*Request) Projection_PreviewProjectorID

func (r *Request) Projection_PreviewProjectorID(projectionID int) *ValueMaybeInt

func (*Request) Projection_Stable

func (r *Request) Projection_Stable(projectionID int) *ValueBool

func (*Request) Projection_Type

func (r *Request) Projection_Type(projectionID int) *ValueString

func (*Request) Projection_Weight

func (r *Request) Projection_Weight(projectionID int) *ValueInt

func (*Request) ProjectorCountdown_CountdownTime

func (r *Request) ProjectorCountdown_CountdownTime(projectorCountdownID int) *ValueFloat

func (*Request) ProjectorCountdown_DefaultTime

func (r *Request) ProjectorCountdown_DefaultTime(projectorCountdownID int) *ValueInt

func (*Request) ProjectorCountdown_Description

func (r *Request) ProjectorCountdown_Description(projectorCountdownID int) *ValueString

func (*Request) ProjectorCountdown_ID

func (r *Request) ProjectorCountdown_ID(projectorCountdownID int) *ValueInt

func (*Request) ProjectorCountdown_MeetingID

func (r *Request) ProjectorCountdown_MeetingID(projectorCountdownID int) *ValueInt

func (*Request) ProjectorCountdown_ProjectionIDs

func (r *Request) ProjectorCountdown_ProjectionIDs(projectorCountdownID int) *ValueIntSlice

func (*Request) ProjectorCountdown_Running

func (r *Request) ProjectorCountdown_Running(projectorCountdownID int) *ValueBool

func (*Request) ProjectorCountdown_Title

func (r *Request) ProjectorCountdown_Title(projectorCountdownID int) *ValueString

func (*Request) ProjectorCountdown_UsedAsListOfSpeakerCountdownMeetingID

func (r *Request) ProjectorCountdown_UsedAsListOfSpeakerCountdownMeetingID(projectorCountdownID int) *ValueMaybeInt

func (*Request) ProjectorCountdown_UsedAsPollCountdownMeetingID

func (r *Request) ProjectorCountdown_UsedAsPollCountdownMeetingID(projectorCountdownID int) *ValueMaybeInt

func (*Request) ProjectorMessage_ID

func (r *Request) ProjectorMessage_ID(projectorMessageID int) *ValueInt

func (*Request) ProjectorMessage_MeetingID

func (r *Request) ProjectorMessage_MeetingID(projectorMessageID int) *ValueInt

func (*Request) ProjectorMessage_Message

func (r *Request) ProjectorMessage_Message(projectorMessageID int) *ValueString

func (*Request) ProjectorMessage_ProjectionIDs

func (r *Request) ProjectorMessage_ProjectionIDs(projectorMessageID int) *ValueIntSlice

func (*Request) Projector_AspectRatioDenominator

func (r *Request) Projector_AspectRatioDenominator(projectorID int) *ValueInt

func (*Request) Projector_AspectRatioNumerator

func (r *Request) Projector_AspectRatioNumerator(projectorID int) *ValueInt

func (*Request) Projector_BackgroundColor

func (r *Request) Projector_BackgroundColor(projectorID int) *ValueString

func (*Request) Projector_ChyronBackgroundColor

func (r *Request) Projector_ChyronBackgroundColor(projectorID int) *ValueString

func (*Request) Projector_ChyronFontColor

func (r *Request) Projector_ChyronFontColor(projectorID int) *ValueString

func (*Request) Projector_Color

func (r *Request) Projector_Color(projectorID int) *ValueString

func (*Request) Projector_CurrentProjectionIDs

func (r *Request) Projector_CurrentProjectionIDs(projectorID int) *ValueIntSlice

func (*Request) Projector_HeaderBackgroundColor

func (r *Request) Projector_HeaderBackgroundColor(projectorID int) *ValueString

func (*Request) Projector_HeaderFontColor

func (r *Request) Projector_HeaderFontColor(projectorID int) *ValueString

func (*Request) Projector_HeaderH1Color

func (r *Request) Projector_HeaderH1Color(projectorID int) *ValueString

func (*Request) Projector_HistoryProjectionIDs

func (r *Request) Projector_HistoryProjectionIDs(projectorID int) *ValueIntSlice

func (*Request) Projector_ID

func (r *Request) Projector_ID(projectorID int) *ValueInt

func (*Request) Projector_MeetingID

func (r *Request) Projector_MeetingID(projectorID int) *ValueInt

func (*Request) Projector_Name

func (r *Request) Projector_Name(projectorID int) *ValueString

func (*Request) Projector_PreviewProjectionIDs

func (r *Request) Projector_PreviewProjectionIDs(projectorID int) *ValueIntSlice

func (*Request) Projector_Scale

func (r *Request) Projector_Scale(projectorID int) *ValueInt

func (*Request) Projector_Scroll

func (r *Request) Projector_Scroll(projectorID int) *ValueInt

func (*Request) Projector_ShowClock

func (r *Request) Projector_ShowClock(projectorID int) *ValueBool

func (*Request) Projector_ShowHeaderFooter

func (r *Request) Projector_ShowHeaderFooter(projectorID int) *ValueBool
func (r *Request) Projector_ShowLogo(projectorID int) *ValueBool

func (*Request) Projector_ShowTitle

func (r *Request) Projector_ShowTitle(projectorID int) *ValueBool

func (*Request) Projector_UsedAsDefaultInMeetingID

func (r *Request) Projector_UsedAsDefaultInMeetingID(projectorID int, replacement string) *ValueInt

func (*Request) Projector_UsedAsDefaultInMeetingIDTmpl

func (r *Request) Projector_UsedAsDefaultInMeetingIDTmpl(projectorID int) *ValueStringSlice

func (*Request) Projector_UsedAsReferenceProjectorMeetingID

func (r *Request) Projector_UsedAsReferenceProjectorMeetingID(projectorID int) *ValueMaybeInt

func (*Request) Projector_Width

func (r *Request) Projector_Width(projectorID int) *ValueInt

func (*Request) Resource_Filesize

func (r *Request) Resource_Filesize(resourceID int) *ValueInt

func (*Request) Resource_ID

func (r *Request) Resource_ID(resourceID int) *ValueInt

func (*Request) Resource_Mimetype

func (r *Request) Resource_Mimetype(resourceID int) *ValueString

func (*Request) Resource_OrganizationID

func (r *Request) Resource_OrganizationID(resourceID int) *ValueInt

func (*Request) Resource_Token

func (r *Request) Resource_Token(resourceID int) *ValueString

func (*Request) Speaker_BeginTime

func (r *Request) Speaker_BeginTime(speakerID int) *ValueInt

func (*Request) Speaker_EndTime

func (r *Request) Speaker_EndTime(speakerID int) *ValueInt

func (*Request) Speaker_ID

func (r *Request) Speaker_ID(speakerID int) *ValueInt

func (*Request) Speaker_ListOfSpeakersID

func (r *Request) Speaker_ListOfSpeakersID(speakerID int) *ValueInt

func (*Request) Speaker_MeetingID

func (r *Request) Speaker_MeetingID(speakerID int) *ValueInt

func (*Request) Speaker_Note

func (r *Request) Speaker_Note(speakerID int) *ValueString

func (*Request) Speaker_PointOfOrder

func (r *Request) Speaker_PointOfOrder(speakerID int) *ValueBool

func (*Request) Speaker_SpeechState

func (r *Request) Speaker_SpeechState(speakerID int) *ValueString

func (*Request) Speaker_UserID

func (r *Request) Speaker_UserID(speakerID int) *ValueInt

func (*Request) Speaker_Weight

func (r *Request) Speaker_Weight(speakerID int) *ValueInt

func (*Request) Tag_ID

func (r *Request) Tag_ID(tagID int) *ValueInt

func (*Request) Tag_MeetingID

func (r *Request) Tag_MeetingID(tagID int) *ValueInt

func (*Request) Tag_Name

func (r *Request) Tag_Name(tagID int) *ValueString

func (*Request) Tag_TaggedIDs

func (r *Request) Tag_TaggedIDs(tagID int) *ValueStringSlice

func (*Request) Theme_Accent100

func (r *Request) Theme_Accent100(themeID int) *ValueString

func (*Request) Theme_Accent200

func (r *Request) Theme_Accent200(themeID int) *ValueString

func (*Request) Theme_Accent300

func (r *Request) Theme_Accent300(themeID int) *ValueString

func (*Request) Theme_Accent400

func (r *Request) Theme_Accent400(themeID int) *ValueString

func (*Request) Theme_Accent50

func (r *Request) Theme_Accent50(themeID int) *ValueString

func (*Request) Theme_Accent500

func (r *Request) Theme_Accent500(themeID int) *ValueString

func (*Request) Theme_Accent600

func (r *Request) Theme_Accent600(themeID int) *ValueString

func (*Request) Theme_Accent700

func (r *Request) Theme_Accent700(themeID int) *ValueString

func (*Request) Theme_Accent800

func (r *Request) Theme_Accent800(themeID int) *ValueString

func (*Request) Theme_Accent900

func (r *Request) Theme_Accent900(themeID int) *ValueString

func (*Request) Theme_AccentA100

func (r *Request) Theme_AccentA100(themeID int) *ValueString

func (*Request) Theme_AccentA200

func (r *Request) Theme_AccentA200(themeID int) *ValueString

func (*Request) Theme_AccentA400

func (r *Request) Theme_AccentA400(themeID int) *ValueString

func (*Request) Theme_AccentA700

func (r *Request) Theme_AccentA700(themeID int) *ValueString

func (*Request) Theme_ID

func (r *Request) Theme_ID(themeID int) *ValueInt

func (*Request) Theme_Name

func (r *Request) Theme_Name(themeID int) *ValueString

func (*Request) Theme_OrganizationID

func (r *Request) Theme_OrganizationID(themeID int) *ValueInt

func (*Request) Theme_Primary100

func (r *Request) Theme_Primary100(themeID int) *ValueString

func (*Request) Theme_Primary200

func (r *Request) Theme_Primary200(themeID int) *ValueString

func (*Request) Theme_Primary300

func (r *Request) Theme_Primary300(themeID int) *ValueString

func (*Request) Theme_Primary400

func (r *Request) Theme_Primary400(themeID int) *ValueString

func (*Request) Theme_Primary50

func (r *Request) Theme_Primary50(themeID int) *ValueString

func (*Request) Theme_Primary500

func (r *Request) Theme_Primary500(themeID int) *ValueString

func (*Request) Theme_Primary600

func (r *Request) Theme_Primary600(themeID int) *ValueString

func (*Request) Theme_Primary700

func (r *Request) Theme_Primary700(themeID int) *ValueString

func (*Request) Theme_Primary800

func (r *Request) Theme_Primary800(themeID int) *ValueString

func (*Request) Theme_Primary900

func (r *Request) Theme_Primary900(themeID int) *ValueString

func (*Request) Theme_PrimaryA100

func (r *Request) Theme_PrimaryA100(themeID int) *ValueString

func (*Request) Theme_PrimaryA200

func (r *Request) Theme_PrimaryA200(themeID int) *ValueString

func (*Request) Theme_PrimaryA400

func (r *Request) Theme_PrimaryA400(themeID int) *ValueString

func (*Request) Theme_PrimaryA700

func (r *Request) Theme_PrimaryA700(themeID int) *ValueString

func (*Request) Theme_ThemeForOrganizationID

func (r *Request) Theme_ThemeForOrganizationID(themeID int) *ValueMaybeInt

func (*Request) Theme_Warn100

func (r *Request) Theme_Warn100(themeID int) *ValueString

func (*Request) Theme_Warn200

func (r *Request) Theme_Warn200(themeID int) *ValueString

func (*Request) Theme_Warn300

func (r *Request) Theme_Warn300(themeID int) *ValueString

func (*Request) Theme_Warn400

func (r *Request) Theme_Warn400(themeID int) *ValueString

func (*Request) Theme_Warn50

func (r *Request) Theme_Warn50(themeID int) *ValueString

func (*Request) Theme_Warn500

func (r *Request) Theme_Warn500(themeID int) *ValueString

func (*Request) Theme_Warn600

func (r *Request) Theme_Warn600(themeID int) *ValueString

func (*Request) Theme_Warn700

func (r *Request) Theme_Warn700(themeID int) *ValueString

func (*Request) Theme_Warn800

func (r *Request) Theme_Warn800(themeID int) *ValueString

func (*Request) Theme_Warn900

func (r *Request) Theme_Warn900(themeID int) *ValueString

func (*Request) Theme_WarnA100

func (r *Request) Theme_WarnA100(themeID int) *ValueString

func (*Request) Theme_WarnA200

func (r *Request) Theme_WarnA200(themeID int) *ValueString

func (*Request) Theme_WarnA400

func (r *Request) Theme_WarnA400(themeID int) *ValueString

func (*Request) Theme_WarnA700

func (r *Request) Theme_WarnA700(themeID int) *ValueString

func (*Request) Topic_AgendaItemID

func (r *Request) Topic_AgendaItemID(topicID int) *ValueInt

func (*Request) Topic_AttachmentIDs

func (r *Request) Topic_AttachmentIDs(topicID int) *ValueIntSlice

func (*Request) Topic_ID

func (r *Request) Topic_ID(topicID int) *ValueInt

func (*Request) Topic_ListOfSpeakersID

func (r *Request) Topic_ListOfSpeakersID(topicID int) *ValueInt

func (*Request) Topic_MeetingID

func (r *Request) Topic_MeetingID(topicID int) *ValueInt

func (*Request) Topic_OptionIDs

func (r *Request) Topic_OptionIDs(topicID int) *ValueIntSlice

func (*Request) Topic_ProjectionIDs

func (r *Request) Topic_ProjectionIDs(topicID int) *ValueIntSlice

func (*Request) Topic_TagIDs

func (r *Request) Topic_TagIDs(topicID int) *ValueIntSlice

func (*Request) Topic_Text

func (r *Request) Topic_Text(topicID int) *ValueString

func (*Request) Topic_Title

func (r *Request) Topic_Title(topicID int) *ValueString

func (*Request) User_AboutMe

func (r *Request) User_AboutMe(userID int, meetingID int) *ValueString

func (*Request) User_AboutMeTmpl

func (r *Request) User_AboutMeTmpl(userID int) *ValueIDSlice

func (*Request) User_AssignmentCandidateIDs

func (r *Request) User_AssignmentCandidateIDs(userID int, meetingID int) *ValueIntSlice

func (*Request) User_AssignmentCandidateIDsTmpl

func (r *Request) User_AssignmentCandidateIDsTmpl(userID int) *ValueIDSlice

func (*Request) User_CanChangeOwnPassword

func (r *Request) User_CanChangeOwnPassword(userID int) *ValueBool

func (*Request) User_ChatMessageIDs

func (r *Request) User_ChatMessageIDs(userID int, meetingID int) *ValueIntSlice

func (*Request) User_ChatMessageIDsTmpl

func (r *Request) User_ChatMessageIDsTmpl(userID int) *ValueIDSlice

func (*Request) User_Comment

func (r *Request) User_Comment(userID int, meetingID int) *ValueString

func (*Request) User_CommentTmpl

func (r *Request) User_CommentTmpl(userID int) *ValueIDSlice

func (*Request) User_CommitteeIDs

func (r *Request) User_CommitteeIDs(userID int) *ValueIntSlice

func (*Request) User_CommitteeManagementLevel

func (r *Request) User_CommitteeManagementLevel(userID int, committeeID int) *ValueString

func (*Request) User_CommitteeManagementLevelTmpl

func (r *Request) User_CommitteeManagementLevelTmpl(userID int) *ValueIDSlice

func (*Request) User_DefaultNumber

func (r *Request) User_DefaultNumber(userID int) *ValueString

func (*Request) User_DefaultPassword

func (r *Request) User_DefaultPassword(userID int) *ValueString

func (*Request) User_DefaultStructureLevel

func (r *Request) User_DefaultStructureLevel(userID int) *ValueString

func (*Request) User_DefaultVoteWeight

func (r *Request) User_DefaultVoteWeight(userID int) *ValueString

func (*Request) User_Email

func (r *Request) User_Email(userID int) *ValueString

func (*Request) User_FirstName

func (r *Request) User_FirstName(userID int) *ValueString

func (*Request) User_Gender

func (r *Request) User_Gender(userID int) *ValueString

func (*Request) User_GroupIDs

func (r *Request) User_GroupIDs(userID int, meetingID int) *ValueIntSlice

func (*Request) User_GroupIDsTmpl

func (r *Request) User_GroupIDsTmpl(userID int) *ValueIDSlice

func (*Request) User_ID

func (r *Request) User_ID(userID int) *ValueInt

func (*Request) User_IsActive

func (r *Request) User_IsActive(userID int) *ValueBool

func (*Request) User_IsDemoUser

func (r *Request) User_IsDemoUser(userID int) *ValueBool

func (*Request) User_IsPhysicalPerson

func (r *Request) User_IsPhysicalPerson(userID int) *ValueBool

func (*Request) User_IsPresentInMeetingIDs

func (r *Request) User_IsPresentInMeetingIDs(userID int) *ValueIntSlice

func (*Request) User_LastEmailSend

func (r *Request) User_LastEmailSend(userID int) *ValueInt

func (*Request) User_LastName

func (r *Request) User_LastName(userID int) *ValueString

func (*Request) User_MeetingIDs

func (r *Request) User_MeetingIDs(userID int) *ValueIntSlice

func (*Request) User_Number

func (r *Request) User_Number(userID int, meetingID int) *ValueString

func (*Request) User_NumberTmpl

func (r *Request) User_NumberTmpl(userID int) *ValueIDSlice

func (*Request) User_OptionIDs

func (r *Request) User_OptionIDs(userID int, meetingID int) *ValueIntSlice

func (*Request) User_OptionIDsTmpl

func (r *Request) User_OptionIDsTmpl(userID int) *ValueIDSlice

func (*Request) User_OrganizationManagementLevel

func (r *Request) User_OrganizationManagementLevel(userID int) *ValueString

func (*Request) User_Password

func (r *Request) User_Password(userID int) *ValueString

func (*Request) User_PersonalNoteIDs

func (r *Request) User_PersonalNoteIDs(userID int, meetingID int) *ValueIntSlice

func (*Request) User_PersonalNoteIDsTmpl

func (r *Request) User_PersonalNoteIDsTmpl(userID int) *ValueIDSlice

func (*Request) User_PollVotedIDs

func (r *Request) User_PollVotedIDs(userID int, meetingID int) *ValueIntSlice

func (*Request) User_PollVotedIDsTmpl

func (r *Request) User_PollVotedIDsTmpl(userID int) *ValueIDSlice

func (*Request) User_ProjectionIDs

func (r *Request) User_ProjectionIDs(userID int, meetingID int) *ValueIntSlice

func (*Request) User_ProjectionIDsTmpl

func (r *Request) User_ProjectionIDsTmpl(userID int) *ValueIDSlice

func (*Request) User_SpeakerIDs

func (r *Request) User_SpeakerIDs(userID int, meetingID int) *ValueIntSlice

func (*Request) User_SpeakerIDsTmpl

func (r *Request) User_SpeakerIDsTmpl(userID int) *ValueIDSlice

func (*Request) User_StructureLevel

func (r *Request) User_StructureLevel(userID int, meetingID int) *ValueString

func (*Request) User_StructureLevelTmpl

func (r *Request) User_StructureLevelTmpl(userID int) *ValueIDSlice

func (*Request) User_SubmittedMotionIDs

func (r *Request) User_SubmittedMotionIDs(userID int, meetingID int) *ValueIntSlice

func (*Request) User_SubmittedMotionIDsTmpl

func (r *Request) User_SubmittedMotionIDsTmpl(userID int) *ValueIDSlice

func (*Request) User_SupportedMotionIDs

func (r *Request) User_SupportedMotionIDs(userID int, meetingID int) *ValueIntSlice

func (*Request) User_SupportedMotionIDsTmpl

func (r *Request) User_SupportedMotionIDsTmpl(userID int) *ValueIDSlice

func (*Request) User_Title

func (r *Request) User_Title(userID int) *ValueString

func (*Request) User_Username

func (r *Request) User_Username(userID int) *ValueString

func (*Request) User_VoteDelegatedToID

func (r *Request) User_VoteDelegatedToID(userID int, meetingID int) *ValueInt

func (*Request) User_VoteDelegatedToIDTmpl

func (r *Request) User_VoteDelegatedToIDTmpl(userID int) *ValueIDSlice

func (*Request) User_VoteDelegatedVoteIDs

func (r *Request) User_VoteDelegatedVoteIDs(userID int, meetingID int) *ValueIntSlice

func (*Request) User_VoteDelegatedVoteIDsTmpl

func (r *Request) User_VoteDelegatedVoteIDsTmpl(userID int) *ValueIDSlice

func (*Request) User_VoteDelegationsFromIDs

func (r *Request) User_VoteDelegationsFromIDs(userID int, meetingID int) *ValueIntSlice

func (*Request) User_VoteDelegationsFromIDsTmpl

func (r *Request) User_VoteDelegationsFromIDsTmpl(userID int) *ValueIDSlice

func (*Request) User_VoteIDs

func (r *Request) User_VoteIDs(userID int, meetingID int) *ValueIntSlice

func (*Request) User_VoteIDsTmpl

func (r *Request) User_VoteIDsTmpl(userID int) *ValueIDSlice

func (*Request) User_VoteWeight

func (r *Request) User_VoteWeight(userID int, meetingID int) *ValueString

func (*Request) User_VoteWeightTmpl

func (r *Request) User_VoteWeightTmpl(userID int) *ValueIDSlice

func (*Request) Vote_DelegatedUserID

func (r *Request) Vote_DelegatedUserID(voteID int) *ValueMaybeInt

func (*Request) Vote_ID

func (r *Request) Vote_ID(voteID int) *ValueInt

func (*Request) Vote_MeetingID

func (r *Request) Vote_MeetingID(voteID int) *ValueInt

func (*Request) Vote_OptionID

func (r *Request) Vote_OptionID(voteID int) *ValueInt

func (*Request) Vote_UserID

func (r *Request) Vote_UserID(voteID int) *ValueMaybeInt

func (*Request) Vote_UserToken

func (r *Request) Vote_UserToken(voteID int) *ValueString

func (*Request) Vote_Value

func (r *Request) Vote_Value(voteID int) *ValueString

func (*Request) Vote_Weight

func (r *Request) Vote_Weight(voteID int) *ValueString

type Updater

type Updater interface {
	Update(context.Context) (map[string][]byte, error)
}

Updater returns keys that have changes. Blocks until there is changed data.

type ValueBool

type ValueBool struct {
	// contains filtered or unexported fields
}

ValueBool is a lazy value from the datastore.

func (*ValueBool) ErrorLater

func (v *ValueBool) ErrorLater(ctx context.Context) bool

ErrorLater is like Value but does not return an error.

If an error happs, it is saved internaly. Make sure to call request.Err() later to access it.

func (*ValueBool) Lazy

func (v *ValueBool) Lazy(value *bool)

Lazy sets a value as soon as it es executed.

Make sure to call request.Execute() before using the value.

func (*ValueBool) Value

func (v *ValueBool) Value(ctx context.Context) (bool, error)

Value returns the value.

type ValueFloat

type ValueFloat struct {
	// contains filtered or unexported fields
}

ValueFloat is a lazy value from the datastore.

func (*ValueFloat) ErrorLater

func (v *ValueFloat) ErrorLater(ctx context.Context) float32

ErrorLater is like Value but does not return an error.

If an error happs, it is saved internaly. Make sure to call request.Err() later to access it.

func (*ValueFloat) Lazy

func (v *ValueFloat) Lazy(value *float32)

Lazy sets a value as soon as it es executed.

Make sure to call request.Execute() before using the value.

func (*ValueFloat) Value

func (v *ValueFloat) Value(ctx context.Context) (float32, error)

Value returns the value.

type ValueIDSlice

type ValueIDSlice struct {
	// contains filtered or unexported fields
}

ValueIDSlice is a lazy value from the datastore.

func (*ValueIDSlice) ErrorLater

func (v *ValueIDSlice) ErrorLater(ctx context.Context) []int

ErrorLater is like Value but does not return an error.

If an error happs, it is saved internaly. Make sure to call request.Err() later to access it.

func (*ValueIDSlice) Lazy

func (v *ValueIDSlice) Lazy(value *[]int)

Lazy sets a value as soon as it es executed.

Make sure to call request.Execute() before using the value.

func (*ValueIDSlice) Value

func (v *ValueIDSlice) Value(ctx context.Context) ([]int, error)

Value returns the value.

type ValueInt

type ValueInt struct {
	// contains filtered or unexported fields
}

ValueInt is a lazy value from the datastore.

func (*ValueInt) ErrorLater

func (v *ValueInt) ErrorLater(ctx context.Context) int

ErrorLater is like Value but does not return an error.

If an error happs, it is saved internaly. Make sure to call request.Err() later to access it.

func (*ValueInt) Lazy

func (v *ValueInt) Lazy(value *int)

Lazy sets a value as soon as it es executed.

Make sure to call request.Execute() before using the value.

func (*ValueInt) Value

func (v *ValueInt) Value(ctx context.Context) (int, error)

Value returns the value.

type ValueIntSlice

type ValueIntSlice struct {
	// contains filtered or unexported fields
}

ValueIntSlice is a lazy value from the datastore.

func (*ValueIntSlice) ErrorLater

func (v *ValueIntSlice) ErrorLater(ctx context.Context) []int

ErrorLater is like Value but does not return an error.

If an error happs, it is saved internaly. Make sure to call request.Err() later to access it.

func (*ValueIntSlice) Lazy

func (v *ValueIntSlice) Lazy(value *[]int)

Lazy sets a value as soon as it es executed.

Make sure to call request.Execute() before using the value.

func (*ValueIntSlice) Value

func (v *ValueIntSlice) Value(ctx context.Context) ([]int, error)

Value returns the value.

type ValueJSON

type ValueJSON struct {
	// contains filtered or unexported fields
}

ValueJSON is a lazy value from the datastore.

func (*ValueJSON) ErrorLater

func (v *ValueJSON) ErrorLater(ctx context.Context) json.RawMessage

ErrorLater is like Value but does not return an error.

If an error happs, it is saved internaly. Make sure to call request.Err() later to access it.

func (*ValueJSON) Lazy

func (v *ValueJSON) Lazy(value *json.RawMessage)

Lazy sets a value as soon as it es executed.

Make sure to call request.Execute() before using the value.

func (*ValueJSON) Value

func (v *ValueJSON) Value(ctx context.Context) (json.RawMessage, error)

Value returns the value.

type ValueMaybeInt

type ValueMaybeInt struct {
	// contains filtered or unexported fields
}

ValueMaybeInt is a lazy value from the datastore.

func (*ValueMaybeInt) ErrorLater

func (v *ValueMaybeInt) ErrorLater(ctx context.Context) (int, bool)

ErrorLater is like Value but does not return an error.

If an error happs, it is saved internaly. Make sure to call request.Err() later to access it.

func (*ValueMaybeInt) Lazy

func (v *ValueMaybeInt) Lazy(value *int)

Lazy sets a value as soon as it es executed.

Make sure to call request.Execute() before using the value.

func (*ValueMaybeInt) Value

func (v *ValueMaybeInt) Value(ctx context.Context) (int, bool, error)

Value returns the value.

type ValueMaybeString

type ValueMaybeString struct {
	// contains filtered or unexported fields
}

ValueMaybeString is a lazy value from the datastore.

func (*ValueMaybeString) ErrorLater

func (v *ValueMaybeString) ErrorLater(ctx context.Context) (string, bool)

ErrorLater is like Value but does not return an error.

If an error happs, it is saved internaly. Make sure to call request.Err() later to access it.

func (*ValueMaybeString) Lazy

func (v *ValueMaybeString) Lazy(value *string)

Lazy sets a value as soon as it es executed.

Make sure to call request.Execute() before using the value.

func (*ValueMaybeString) Value

func (v *ValueMaybeString) Value(ctx context.Context) (string, bool, error)

Value returns the value.

type ValueRequiredInt

type ValueRequiredInt struct {
	// contains filtered or unexported fields
}

ValueRequiredInt is a lazy value from the datastore.

func (*ValueRequiredInt) ErrorLater

func (v *ValueRequiredInt) ErrorLater(ctx context.Context) (int, bool)

ErrorLater is like Value but does not return an error.

If an error happs, it is saved internaly. Make sure to call request.Err() later to access it.

func (*ValueRequiredInt) Value

func (v *ValueRequiredInt) Value(ctx context.Context) (int, bool, error)

Value returns the value.

type ValueString

type ValueString struct {
	// contains filtered or unexported fields
}

ValueString is a lazy value from the datastore.

func (*ValueString) ErrorLater

func (v *ValueString) ErrorLater(ctx context.Context) string

ErrorLater is like Value but does not return an error.

If an error happs, it is saved internaly. Make sure to call request.Err() later to access it.

func (*ValueString) Lazy

func (v *ValueString) Lazy(value *string)

Lazy sets a value as soon as it es executed.

Make sure to call request.Execute() before using the value.

func (*ValueString) Value

func (v *ValueString) Value(ctx context.Context) (string, error)

Value returns the value.

type ValueStringSlice

type ValueStringSlice struct {
	// contains filtered or unexported fields
}

ValueStringSlice is a lazy value from the datastore.

func (*ValueStringSlice) ErrorLater

func (v *ValueStringSlice) ErrorLater(ctx context.Context) []string

ErrorLater is like Value but does not return an error.

If an error happs, it is saved internaly. Make sure to call request.Err() later to access it.

func (*ValueStringSlice) Lazy

func (v *ValueStringSlice) Lazy(value *[]string)

Lazy sets a value as soon as it es executed.

Make sure to call request.Execute() before using the value.

func (*ValueStringSlice) Value

func (v *ValueStringSlice) Value(ctx context.Context) ([]string, error)

Value returns the value.

Directories

Path Synopsis
This tool generates the code needed for the request object.
This tool generates the code needed for the request object.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL