Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type PeopleRequestBuilder ¶
type PeopleRequestBuilder struct {
// contains filtered or unexported fields
}
PeopleRequestBuilder provides operations to manage the people property of the microsoft.graph.user entity.
func NewPeopleRequestBuilder ¶
func NewPeopleRequestBuilder(rawUrl string, requestAdapter i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestAdapter) *PeopleRequestBuilder
NewPeopleRequestBuilder instantiates a new PeopleRequestBuilder and sets the default values.
func NewPeopleRequestBuilderInternal ¶
func NewPeopleRequestBuilderInternal(pathParameters map[string]string, requestAdapter i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestAdapter) *PeopleRequestBuilder
NewPeopleRequestBuilderInternal instantiates a new PeopleRequestBuilder and sets the default values.
func (*PeopleRequestBuilder) Count ¶ added in v0.13.0
func (m *PeopleRequestBuilder) Count() *i83684efb7d29636f148203af4bd6d21df197b70e00ee941b88ebaa55cf691b2d.CountRequestBuilder
Count provides operations to count the resources in the collection.
func (*PeopleRequestBuilder) CreateGetRequestInformation ¶
func (m *PeopleRequestBuilder) CreateGetRequestInformation(ctx context.Context, requestConfiguration *PeopleRequestBuilderGetRequestConfiguration) (*i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestInformation, error)
CreateGetRequestInformation retrieve a collection of person objects ordered by their relevance to the user, which is determined by the user's communication and collaboration patterns, and business relationships. You can get this information via the People API. For examples, see the Examples section and the article Use the People API to get information about the people most relevant to you.
func (*PeopleRequestBuilder) Get ¶
func (m *PeopleRequestBuilder) Get(ctx context.Context, requestConfiguration *PeopleRequestBuilderGetRequestConfiguration) (iadcd81124412c61e647227ecfc4449d8bba17de0380ddda76f641a29edf2b242.PersonCollectionResponseable, error)
Get retrieve a collection of person objects ordered by their relevance to the user, which is determined by the user's communication and collaboration patterns, and business relationships. You can get this information via the People API. For examples, see the Examples section and the article Use the People API to get information about the people most relevant to you.
type PeopleRequestBuilderGetQueryParameters ¶
type PeopleRequestBuilderGetQueryParameters struct { // Include count of items Count *bool `uriparametername:"%24count"` // 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"` }
PeopleRequestBuilderGetQueryParameters retrieve a collection of person objects ordered by their relevance to the user, which is determined by the user's communication and collaboration patterns, and business relationships. You can get this information via the People API. For examples, see the Examples section and the article Use the People API to get information about the people most relevant to you.
type PeopleRequestBuilderGetRequestConfiguration ¶ added in v0.22.0
type PeopleRequestBuilderGetRequestConfiguration struct { // Request headers Headers map[string]string // Request options Options []i2ae4187f7daee263371cb1c977df639813ab50ffa529013b7437480d1ec0158f.RequestOption // Request query parameters QueryParameters *PeopleRequestBuilderGetQueryParameters }
PeopleRequestBuilderGetRequestConfiguration configuration for the request such as headers, query parameters, and middleware options.