Documentation ¶
Index ¶
- type OnlineMeetingItemRequestBuilder
- func (m *OnlineMeetingItemRequestBuilder) AttendanceReports() ...
- func (m *OnlineMeetingItemRequestBuilder) AttendanceReportsById(id string) ...
- func (m *OnlineMeetingItemRequestBuilder) AttendeeReport() ...
- func (m *OnlineMeetingItemRequestBuilder) CreateDeleteRequestInformation(options *OnlineMeetingItemRequestBuilderDeleteOptions) (...)
- func (m *OnlineMeetingItemRequestBuilder) CreateGetRequestInformation(options *OnlineMeetingItemRequestBuilderGetOptions) (...)
- func (m *OnlineMeetingItemRequestBuilder) CreatePatchRequestInformation(options *OnlineMeetingItemRequestBuilderPatchOptions) (...)
- func (m *OnlineMeetingItemRequestBuilder) Delete(options *OnlineMeetingItemRequestBuilderDeleteOptions) error
- func (m *OnlineMeetingItemRequestBuilder) Get(options *OnlineMeetingItemRequestBuilderGetOptions) (...)
- func (m *OnlineMeetingItemRequestBuilder) Patch(options *OnlineMeetingItemRequestBuilderPatchOptions) error
- type OnlineMeetingItemRequestBuilderDeleteOptions
- type OnlineMeetingItemRequestBuilderGetOptions
- type OnlineMeetingItemRequestBuilderGetQueryParameters
- type OnlineMeetingItemRequestBuilderPatchOptions
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type OnlineMeetingItemRequestBuilder ¶
type OnlineMeetingItemRequestBuilder struct {
// contains filtered or unexported fields
}
OnlineMeetingItemRequestBuilder provides operations to manage the onlineMeetings property of the microsoft.graph.user entity.
func NewOnlineMeetingItemRequestBuilder ¶
func NewOnlineMeetingItemRequestBuilder(rawUrl string, requestAdapter i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestAdapter) *OnlineMeetingItemRequestBuilder
NewOnlineMeetingItemRequestBuilder instantiates a new OnlineMeetingItemRequestBuilder and sets the default values.
func NewOnlineMeetingItemRequestBuilderInternal ¶
func NewOnlineMeetingItemRequestBuilderInternal(pathParameters map[string]string, requestAdapter i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestAdapter) *OnlineMeetingItemRequestBuilder
NewOnlineMeetingItemRequestBuilderInternal instantiates a new OnlineMeetingItemRequestBuilder and sets the default values.
func (*OnlineMeetingItemRequestBuilder) AttendanceReports ¶
func (m *OnlineMeetingItemRequestBuilder) AttendanceReports() *i5d5bc738ceadc6a7f9d483a596e8960ca4b33221022b9ecca0b1f94547da3382.AttendanceReportsRequestBuilder
AttendanceReports the attendanceReports property
func (*OnlineMeetingItemRequestBuilder) AttendanceReportsById ¶
func (m *OnlineMeetingItemRequestBuilder) AttendanceReportsById(id string) *i1e3ab01fc58c0f3789bb0e12a737777731268a41015a93932cbf035e8ac3a9ba.MeetingAttendanceReportItemRequestBuilder
AttendanceReportsById gets an item from the github.com/microsoftgraph/msgraph-sdk-go/.me.onlineMeetings.item.attendanceReports.item collection
func (*OnlineMeetingItemRequestBuilder) AttendeeReport ¶
func (m *OnlineMeetingItemRequestBuilder) AttendeeReport() *i7913b0f1f531b37f2b2d8ab9a41a565c303092132340c60f8b08ee450b88a4f5.AttendeeReportRequestBuilder
AttendeeReport the attendeeReport property
func (*OnlineMeetingItemRequestBuilder) CreateDeleteRequestInformation ¶
func (m *OnlineMeetingItemRequestBuilder) CreateDeleteRequestInformation(options *OnlineMeetingItemRequestBuilderDeleteOptions) (*i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestInformation, error)
CreateDeleteRequestInformation delete navigation property onlineMeetings for me
func (*OnlineMeetingItemRequestBuilder) CreateGetRequestInformation ¶
func (m *OnlineMeetingItemRequestBuilder) CreateGetRequestInformation(options *OnlineMeetingItemRequestBuilderGetOptions) (*i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestInformation, error)
CreateGetRequestInformation get onlineMeetings from me
func (*OnlineMeetingItemRequestBuilder) CreatePatchRequestInformation ¶
func (m *OnlineMeetingItemRequestBuilder) CreatePatchRequestInformation(options *OnlineMeetingItemRequestBuilderPatchOptions) (*i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestInformation, error)
CreatePatchRequestInformation update the navigation property onlineMeetings in me
func (*OnlineMeetingItemRequestBuilder) Delete ¶
func (m *OnlineMeetingItemRequestBuilder) Delete(options *OnlineMeetingItemRequestBuilderDeleteOptions) error
Delete delete navigation property onlineMeetings for me
func (*OnlineMeetingItemRequestBuilder) Get ¶
func (m *OnlineMeetingItemRequestBuilder) Get(options *OnlineMeetingItemRequestBuilderGetOptions) (iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.OnlineMeetingable, error)
Get get onlineMeetings from me
func (*OnlineMeetingItemRequestBuilder) Patch ¶
func (m *OnlineMeetingItemRequestBuilder) Patch(options *OnlineMeetingItemRequestBuilderPatchOptions) error
Patch update the navigation property onlineMeetings in me
type OnlineMeetingItemRequestBuilderDeleteOptions ¶
type OnlineMeetingItemRequestBuilderDeleteOptions struct { // Request headers Headers map[string]string // Request options Options []i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestOption // Response handler to use in place of the default response handling provided by the core service ResponseHandler i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.ResponseHandler }
OnlineMeetingItemRequestBuilderDeleteOptions options for Delete
type OnlineMeetingItemRequestBuilderGetOptions ¶
type OnlineMeetingItemRequestBuilderGetOptions struct { // Request headers Headers map[string]string // Request options Options []i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestOption // Request query parameters QueryParameters *OnlineMeetingItemRequestBuilderGetQueryParameters // Response handler to use in place of the default response handling provided by the core service ResponseHandler i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.ResponseHandler }
OnlineMeetingItemRequestBuilderGetOptions options for Get
type OnlineMeetingItemRequestBuilderGetQueryParameters ¶
type OnlineMeetingItemRequestBuilderGetQueryParameters struct { // Expand related entities Expand []string `uriparametername:"%24expand"` // Select properties to be returned Select []string `uriparametername:"%24select"` }
OnlineMeetingItemRequestBuilderGetQueryParameters get onlineMeetings from me
type OnlineMeetingItemRequestBuilderPatchOptions ¶
type OnlineMeetingItemRequestBuilderPatchOptions struct { // Body iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.OnlineMeetingable // Request headers Headers map[string]string // Request options Options []i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestOption // Response handler to use in place of the default response handling provided by the core service ResponseHandler i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.ResponseHandler }
OnlineMeetingItemRequestBuilderPatchOptions options for Patch