Documentation ¶
Index ¶
- type AttachmentsRequestBuilder
- func (m *AttachmentsRequestBuilder) Count() ...
- func (m *AttachmentsRequestBuilder) CreateGetRequestInformation() (...)
- func (m *AttachmentsRequestBuilder) CreateGetRequestInformationWithRequestConfiguration(requestConfiguration *AttachmentsRequestBuilderGetRequestConfiguration) (...)
- func (m *AttachmentsRequestBuilder) CreatePostRequestInformation(...) (...)
- func (m *AttachmentsRequestBuilder) CreatePostRequestInformationWithRequestConfiguration(...) (...)
- func (m *AttachmentsRequestBuilder) CreateUploadSession() ...
- func (m *AttachmentsRequestBuilder) Get(ctx context.Context, ...) (...)
- func (m *AttachmentsRequestBuilder) Post(ctx context.Context, ...) (...)
- type AttachmentsRequestBuilderGetQueryParameters
- type AttachmentsRequestBuilderGetRequestConfiguration
- type AttachmentsRequestBuilderPostRequestConfiguration
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AttachmentsRequestBuilder ¶
type AttachmentsRequestBuilder struct {
// contains filtered or unexported fields
}
AttachmentsRequestBuilder provides operations to manage the attachments property of the microsoft.graph.event entity.
func NewAttachmentsRequestBuilder ¶
func NewAttachmentsRequestBuilder(rawUrl string, requestAdapter i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestAdapter) *AttachmentsRequestBuilder
NewAttachmentsRequestBuilder instantiates a new AttachmentsRequestBuilder and sets the default values.
func NewAttachmentsRequestBuilderInternal ¶
func NewAttachmentsRequestBuilderInternal(pathParameters map[string]string, requestAdapter i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestAdapter) *AttachmentsRequestBuilder
NewAttachmentsRequestBuilderInternal instantiates a new AttachmentsRequestBuilder and sets the default values.
func (*AttachmentsRequestBuilder) Count ¶ added in v0.13.0
func (m *AttachmentsRequestBuilder) Count() *i5b75f7bba1f53242d72b1ad5c97ad24291d5e3ff8bdc245bf35cd6132d270aae.CountRequestBuilder
Count the Count property
func (*AttachmentsRequestBuilder) CreateGetRequestInformation ¶
func (m *AttachmentsRequestBuilder) CreateGetRequestInformation() (*i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestInformation, error)
CreateGetRequestInformation retrieve a list of attachment objects attached to an event.
func (*AttachmentsRequestBuilder) CreateGetRequestInformationWithRequestConfiguration ¶ added in v0.22.0
func (m *AttachmentsRequestBuilder) CreateGetRequestInformationWithRequestConfiguration(requestConfiguration *AttachmentsRequestBuilderGetRequestConfiguration) (*i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestInformation, error)
CreateGetRequestInformationWithRequestConfiguration retrieve a list of attachment objects attached to an event.
func (*AttachmentsRequestBuilder) CreatePostRequestInformation ¶
func (m *AttachmentsRequestBuilder) CreatePostRequestInformation(body iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.Attachmentable) (*i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestInformation, error)
CreatePostRequestInformation use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well.
func (*AttachmentsRequestBuilder) CreatePostRequestInformationWithRequestConfiguration ¶ added in v0.22.0
func (m *AttachmentsRequestBuilder) CreatePostRequestInformationWithRequestConfiguration(body iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.Attachmentable, requestConfiguration *AttachmentsRequestBuilderPostRequestConfiguration) (*i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestInformation, error)
CreatePostRequestInformationWithRequestConfiguration use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well.
func (*AttachmentsRequestBuilder) CreateUploadSession ¶
func (m *AttachmentsRequestBuilder) CreateUploadSession() *i143bb1d7a6985cabac55eaa2399a697dc49f213ddec180107648c44883c52eed.CreateUploadSessionRequestBuilder
CreateUploadSession the createUploadSession property
func (*AttachmentsRequestBuilder) Get ¶
func (m *AttachmentsRequestBuilder) Get(ctx context.Context, requestConfiguration *AttachmentsRequestBuilderGetRequestConfiguration) (iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.AttachmentCollectionResponseable, error)
Get retrieve a list of attachment objects attached to an event.
func (*AttachmentsRequestBuilder) Post ¶
func (m *AttachmentsRequestBuilder) Post(ctx context.Context, body iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.Attachmentable, requestConfiguration *AttachmentsRequestBuilderPostRequestConfiguration) (iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.Attachmentable, error)
Post use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well.
type AttachmentsRequestBuilderGetQueryParameters ¶
type AttachmentsRequestBuilderGetQueryParameters struct { // Include count of items Count *bool `uriparametername:"%24count"` // Expand related entities Expand []string `uriparametername:"%24expand"` // Filter items by property values Filter *string `uriparametername:"%24filter"` // Order items by property values Orderby []string `uriparametername:"%24orderby"` // Select properties to be returned Select []string `uriparametername:"%24select"` // Skip the first n items Skip *int32 `uriparametername:"%24skip"` // Show only the first n items Top *int32 `uriparametername:"%24top"` }
AttachmentsRequestBuilderGetQueryParameters retrieve a list of attachment objects attached to an event.
type AttachmentsRequestBuilderGetRequestConfiguration ¶ added in v0.22.0
type AttachmentsRequestBuilderGetRequestConfiguration struct { // Request headers Headers map[string]string // Request options Options []i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestOption // Request query parameters QueryParameters *AttachmentsRequestBuilderGetQueryParameters }
AttachmentsRequestBuilderGetRequestConfiguration configuration for the request such as headers, query parameters, and middleware options.
type AttachmentsRequestBuilderPostRequestConfiguration ¶ added in v0.22.0
type AttachmentsRequestBuilderPostRequestConfiguration struct { // Request headers Headers map[string]string // Request options Options []i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestOption }
AttachmentsRequestBuilderPostRequestConfiguration configuration for the request such as headers, query parameters, and middleware options.