Documentation
¶
Index ¶
- type NotesRequestBuilder
- func (m *NotesRequestBuilder) Count() ...
- func (m *NotesRequestBuilder) CreateGetRequestInformation() (...)
- func (m *NotesRequestBuilder) CreateGetRequestInformationWithRequestConfiguration(requestConfiguration *NotesRequestBuilderGetRequestConfiguration) (...)
- func (m *NotesRequestBuilder) CreatePostRequestInformation(...) (...)
- func (m *NotesRequestBuilder) CreatePostRequestInformationWithRequestConfiguration(...) (...)
- func (m *NotesRequestBuilder) Get() (...)
- func (m *NotesRequestBuilder) GetWithRequestConfigurationAndResponseHandler(requestConfiguration *NotesRequestBuilderGetRequestConfiguration, ...) (...)
- func (m *NotesRequestBuilder) Post(...) (...)
- func (m *NotesRequestBuilder) PostWithRequestConfigurationAndResponseHandler(...) (...)
- type NotesRequestBuilderGetQueryParameters
- type NotesRequestBuilderGetRequestConfiguration
- type NotesRequestBuilderPostRequestConfiguration
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type NotesRequestBuilder ¶
type NotesRequestBuilder struct {
// contains filtered or unexported fields
}
NotesRequestBuilder provides operations to manage the notes property of the microsoft.graph.subjectRightsRequest entity.
func NewNotesRequestBuilder ¶
func NewNotesRequestBuilder(rawUrl string, requestAdapter i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestAdapter) *NotesRequestBuilder
NewNotesRequestBuilder instantiates a new NotesRequestBuilder and sets the default values.
func NewNotesRequestBuilderInternal ¶
func NewNotesRequestBuilderInternal(pathParameters map[string]string, requestAdapter i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestAdapter) *NotesRequestBuilder
NewNotesRequestBuilderInternal instantiates a new NotesRequestBuilder and sets the default values.
func (*NotesRequestBuilder) Count ¶ added in v0.13.0
func (m *NotesRequestBuilder) Count() *i4a5bec9a0b6862b8e551b50d29a64ce1e3fe6983a2c355db62c7c14ca82be791.CountRequestBuilder
Count the count property
func (*NotesRequestBuilder) CreateGetRequestInformation ¶
func (m *NotesRequestBuilder) CreateGetRequestInformation() (*i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestInformation, error)
CreateGetRequestInformation list of notes associated with the request.
func (*NotesRequestBuilder) CreateGetRequestInformationWithRequestConfiguration ¶ added in v0.22.0
func (m *NotesRequestBuilder) CreateGetRequestInformationWithRequestConfiguration(requestConfiguration *NotesRequestBuilderGetRequestConfiguration) (*i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestInformation, error)
CreateGetRequestInformationWithRequestConfiguration list of notes associated with the request.
func (*NotesRequestBuilder) CreatePostRequestInformation ¶
func (m *NotesRequestBuilder) CreatePostRequestInformation(body iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.AuthoredNoteable) (*i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestInformation, error)
CreatePostRequestInformation create new navigation property to notes for privacy
func (*NotesRequestBuilder) CreatePostRequestInformationWithRequestConfiguration ¶ added in v0.22.0
func (m *NotesRequestBuilder) CreatePostRequestInformationWithRequestConfiguration(body iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.AuthoredNoteable, requestConfiguration *NotesRequestBuilderPostRequestConfiguration) (*i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestInformation, error)
CreatePostRequestInformationWithRequestConfiguration create new navigation property to notes for privacy
func (*NotesRequestBuilder) Get ¶
func (m *NotesRequestBuilder) Get() (iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.AuthoredNoteCollectionResponseable, error)
Get list of notes associated with the request.
func (*NotesRequestBuilder) GetWithRequestConfigurationAndResponseHandler ¶ added in v0.22.0
func (m *NotesRequestBuilder) GetWithRequestConfigurationAndResponseHandler(requestConfiguration *NotesRequestBuilderGetRequestConfiguration, responseHandler i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.ResponseHandler) (iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.AuthoredNoteCollectionResponseable, error)
GetWithRequestConfigurationAndResponseHandler list of notes associated with the request.
func (*NotesRequestBuilder) Post ¶
func (m *NotesRequestBuilder) Post(body iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.AuthoredNoteable) (iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.AuthoredNoteable, error)
Post create new navigation property to notes for privacy
func (*NotesRequestBuilder) PostWithRequestConfigurationAndResponseHandler ¶ added in v0.22.0
func (m *NotesRequestBuilder) PostWithRequestConfigurationAndResponseHandler(body iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.AuthoredNoteable, requestConfiguration *NotesRequestBuilderPostRequestConfiguration, responseHandler i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.ResponseHandler) (iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.AuthoredNoteable, error)
PostWithRequestConfigurationAndResponseHandler create new navigation property to notes for privacy
type NotesRequestBuilderGetQueryParameters ¶
type NotesRequestBuilderGetQueryParameters 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"`
// Search items by search phrases
Search *string `uriparametername:"%24search"`
// 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"`
}
NotesRequestBuilderGetQueryParameters list of notes associated with the request.
type NotesRequestBuilderGetRequestConfiguration ¶ added in v0.22.0
type NotesRequestBuilderGetRequestConfiguration struct {
// Request headers
Headers map[string]string
// Request options
Options []i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestOption
// Request query parameters
QueryParameters *NotesRequestBuilderGetQueryParameters
}
NotesRequestBuilderGetRequestConfiguration configuration for the request such as headers, query parameters, and middleware options.
type NotesRequestBuilderPostRequestConfiguration ¶ added in v0.22.0
type NotesRequestBuilderPostRequestConfiguration struct {
// Request headers
Headers map[string]string
// Request options
Options []i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestOption
}
NotesRequestBuilderPostRequestConfiguration configuration for the request such as headers, query parameters, and middleware options.