Search in sources :

Example 1 with SingleValueLegacyExtendedPropertyCollectionRequestBuilder

use of com.microsoft.graph.requests.SingleValueLegacyExtendedPropertyCollectionRequestBuilder in project msgraph-sdk-java by microsoftgraph.

the class OutlookTests method testSingleValuesExtendedProperties.

@Test
public void testSingleValuesExtendedProperties() {
    final TestBase testBase = new TestBase();
    final EventCollectionPage arrangePage = testBase.graphClient.me().events().buildRequest().top(1).get();
    final String eventId = arrangePage.getCurrentPage().get(0).id;
    final Event updatedEvent = new Event();
    final String uuid = UUID.randomUUID().toString();
    final SingleValueLegacyExtendedProperty prop = new SingleValueLegacyExtendedProperty();
    prop.id = "String {" + uuid + "} Name fun";
    prop.value = "some value";
    final SingleValueLegacyExtendedPropertyCollectionResponse response = new SingleValueLegacyExtendedPropertyCollectionResponse();
    response.value = new ArrayList<SingleValueLegacyExtendedProperty>();
    response.value.add(prop);
    updatedEvent.singleValueExtendedProperties = new SingleValueLegacyExtendedPropertyCollectionPage(response, new SingleValueLegacyExtendedPropertyCollectionRequestBuilder(null, null, null));
    testBase.graphClient.me().events(eventId).buildRequest().patch(updatedEvent);
    final EventCollectionPage page = testBase.graphClient.me().events().buildRequest().expand("singleValueExtendedProperties").top(1).get();
    assertNotNull(page);
    final List<Event> events = page.getCurrentPage();
    assertTrue(events.size() == 1);
    assertNotNull(events.get(0).singleValueExtendedProperties);
}
Also used : SingleValueLegacyExtendedPropertyCollectionPage(com.microsoft.graph.requests.SingleValueLegacyExtendedPropertyCollectionPage) EventCollectionPage(com.microsoft.graph.requests.EventCollectionPage) SingleValueLegacyExtendedProperty(com.microsoft.graph.models.SingleValueLegacyExtendedProperty) SingleValueLegacyExtendedPropertyCollectionResponse(com.microsoft.graph.requests.SingleValueLegacyExtendedPropertyCollectionResponse) Event(com.microsoft.graph.models.Event) SingleValueLegacyExtendedPropertyCollectionRequestBuilder(com.microsoft.graph.requests.SingleValueLegacyExtendedPropertyCollectionRequestBuilder) Test(org.junit.jupiter.api.Test)

Example 2 with SingleValueLegacyExtendedPropertyCollectionRequestBuilder

use of com.microsoft.graph.requests.SingleValueLegacyExtendedPropertyCollectionRequestBuilder in project msgraph-beta-sdk-java by microsoftgraph.

the class OutlookTests method testSingleValuesExtendedProperties.

@Test
public void testSingleValuesExtendedProperties() {
    final TestBase testBase = new TestBase();
    final EventCollectionPage arrangePage = testBase.graphClient.me().events().buildRequest().top(1).get();
    final String eventId = arrangePage.getCurrentPage().get(0).id;
    final Event updatedEvent = new Event();
    final String uuid = UUID.randomUUID().toString();
    final SingleValueLegacyExtendedProperty prop = new SingleValueLegacyExtendedProperty();
    prop.id = "String {" + uuid + "} Name fun";
    prop.value = "some value";
    final SingleValueLegacyExtendedPropertyCollectionResponse response = new SingleValueLegacyExtendedPropertyCollectionResponse();
    response.value = new ArrayList<SingleValueLegacyExtendedProperty>();
    response.value.add(prop);
    updatedEvent.singleValueExtendedProperties = new SingleValueLegacyExtendedPropertyCollectionPage(response, new SingleValueLegacyExtendedPropertyCollectionRequestBuilder(null, null, null));
    testBase.graphClient.me().events(eventId).buildRequest().patch(updatedEvent);
    final EventCollectionPage page = testBase.graphClient.me().events().buildRequest().expand("singleValueExtendedProperties").top(1).get();
    assertNotNull(page);
    final List<Event> events = page.getCurrentPage();
    assertTrue(events.size() == 1);
    assertNotNull(events.get(0).singleValueExtendedProperties);
}
Also used : SingleValueLegacyExtendedPropertyCollectionPage(com.microsoft.graph.requests.SingleValueLegacyExtendedPropertyCollectionPage) EventCollectionPage(com.microsoft.graph.requests.EventCollectionPage) SingleValueLegacyExtendedProperty(com.microsoft.graph.models.SingleValueLegacyExtendedProperty) SingleValueLegacyExtendedPropertyCollectionResponse(com.microsoft.graph.requests.SingleValueLegacyExtendedPropertyCollectionResponse) Event(com.microsoft.graph.models.Event) SingleValueLegacyExtendedPropertyCollectionRequestBuilder(com.microsoft.graph.requests.SingleValueLegacyExtendedPropertyCollectionRequestBuilder) Test(org.junit.jupiter.api.Test)

Aggregations

Event (com.microsoft.graph.models.Event)2 SingleValueLegacyExtendedProperty (com.microsoft.graph.models.SingleValueLegacyExtendedProperty)2 EventCollectionPage (com.microsoft.graph.requests.EventCollectionPage)2 SingleValueLegacyExtendedPropertyCollectionPage (com.microsoft.graph.requests.SingleValueLegacyExtendedPropertyCollectionPage)2 SingleValueLegacyExtendedPropertyCollectionRequestBuilder (com.microsoft.graph.requests.SingleValueLegacyExtendedPropertyCollectionRequestBuilder)2 SingleValueLegacyExtendedPropertyCollectionResponse (com.microsoft.graph.requests.SingleValueLegacyExtendedPropertyCollectionResponse)2 Test (org.junit.jupiter.api.Test)2