Search in sources :

Example 1 with Contact

use of com.microsoft.graph.models.Contact in project msgraph-sdk-java by microsoftgraph.

the class OutlookTests method getItemAttachmentWithContact.

private ItemAttachment getItemAttachmentWithContact() {
    Contact contact = new Contact();
    contact.displayName = "displayname";
    contact.mobilePhone = "123456890";
    ItemAttachment itemAttachmentContact = new ItemAttachment();
    itemAttachmentContact.oDataType = "#microsoft.graph.itemAttachment";
    itemAttachmentContact.name = "Attachment name";
    itemAttachmentContact.item = contact;
    itemAttachmentContact.item.oDataType = "microsoft.graph.contact";
    return itemAttachmentContact;
}
Also used : ItemAttachment(com.microsoft.graph.models.ItemAttachment) Contact(com.microsoft.graph.models.Contact)

Example 2 with Contact

use of com.microsoft.graph.models.Contact in project msgraph-beta-sdk-java by microsoftgraph.

the class CollectionPageSerializerTests method getItemAttachmentWithContact.

private ItemAttachment getItemAttachmentWithContact() {
    Contact contact = new Contact();
    contact.displayName = "displayname";
    contact.officeLocation = "Montreal";
    ItemAttachment itemAttachmentContact = new ItemAttachment();
    itemAttachmentContact.oDataType = "#microsoft.graph.itemAttachment";
    itemAttachmentContact.name = "Attachment name";
    itemAttachmentContact.item = contact;
    itemAttachmentContact.item.oDataType = "microsoft.graph.contact";
    return itemAttachmentContact;
}
Also used : ItemAttachment(com.microsoft.graph.models.ItemAttachment) Contact(com.microsoft.graph.models.Contact)

Example 3 with Contact

use of com.microsoft.graph.models.Contact in project msgraph-beta-sdk-java by microsoftgraph.

the class OutlookTests method getItemAttachmentWithContact.

private ItemAttachment getItemAttachmentWithContact() {
    Contact contact = new Contact();
    contact.displayName = "displayname";
    contact.officeLocation = "Montreal";
    ItemAttachment itemAttachmentContact = new ItemAttachment();
    itemAttachmentContact.oDataType = "#microsoft.graph.itemAttachment";
    itemAttachmentContact.name = "Attachment name";
    itemAttachmentContact.item = contact;
    itemAttachmentContact.item.oDataType = "microsoft.graph.contact";
    return itemAttachmentContact;
}
Also used : ItemAttachment(com.microsoft.graph.models.ItemAttachment) Contact(com.microsoft.graph.models.Contact)

Example 4 with Contact

use of com.microsoft.graph.models.Contact in project msgraph-sdk-java by microsoftgraph.

the class CollectionPageSerializerTests method testAttachmentCollectionPageDeserialization.

@Test
public void testAttachmentCollectionPageDeserialization() throws Exception {
    String jsonString = "[{\"contentBytes\":\"ZGF0YQ==\",\"name\":\"document.pdf\",\"@odata.type\":\"#microsoft.graph.fileAttachment\",\"id\":\"54321\"},{\"@odata.type\":\"#microsoft.graph.itemAttachment\",\"name\":\"Holiday event\",\"id\":null,\"isInline\":null,\"size\":null,\"item\":{\"subject\":\"Test Event Subject\",\"start\":{\"dateTime\":\"2018-10-16T06:15:26.544Z\",\"timeZone\":\"UTC\"},\"end\":{\"dateTime\":\"2018-11-18T07:30:26.544Z\",\"timeZone\":\"UTC\"},\"@odata.type\":\"microsoft.graph.event\",\"id\":\"1234\"}},{\"@odata.type\":\"#microsoft.graph.itemAttachment\",\"name\":\"Attachment name\",\"id\":null,\"isInline\":null,\"size\":null,\"item\":{\"displayName\":\"displayname\",\"mobilePhone\":\"123456890\",\"@odata.type\":\"microsoft.graph.contact\"}}]";
    JsonElement jsonElement = JsonParser.parseString(jsonString);
    BaseCollectionPage<Attachment, ?> attachmentCollectionPage = CollectionPageSerializer.deserialize(jsonElement, AttachmentCollectionPage.class, logger);
    for (Attachment attachment : attachmentCollectionPage.getCurrentPage()) {
        if (attachment instanceof FileAttachment) {
            FileAttachment fileAttachment = (FileAttachment) attachment;
            assertEquals(fileAttachment.name, getFileAttachment().name);
            String actual = ByteArraySerializer.serialize(fileAttachment.contentBytes);
            String expected = ByteArraySerializer.serialize(getFileAttachment().contentBytes);
            assertEquals(expected, actual);
        } else if (attachment instanceof ItemAttachment) {
            ItemAttachment itemAttachment = (ItemAttachment) attachment;
            if (itemAttachment.item instanceof Event) {
                Event event = (Event) itemAttachment.item;
                assertEquals(getEvent().subject, event.subject);
            } else if (itemAttachment.item instanceof Contact) {
                Contact actual = (Contact) itemAttachment.item;
                Contact expected = (Contact) getItemAttachmentWithContact().item;
                assertEquals(expected.mobilePhone, actual.mobilePhone);
            }
        }
    }
}
Also used : JsonElement(com.google.gson.JsonElement) FileAttachment(com.microsoft.graph.models.FileAttachment) Event(com.microsoft.graph.models.Event) ItemAttachment(com.microsoft.graph.models.ItemAttachment) Attachment(com.microsoft.graph.models.Attachment) FileAttachment(com.microsoft.graph.models.FileAttachment) ItemAttachment(com.microsoft.graph.models.ItemAttachment) Contact(com.microsoft.graph.models.Contact) Test(org.junit.jupiter.api.Test)

Example 5 with Contact

use of com.microsoft.graph.models.Contact in project msgraph-sdk-java by microsoftgraph.

the class CollectionPageSerializerTests method getItemAttachmentWithContact.

private ItemAttachment getItemAttachmentWithContact() {
    Contact contact = new Contact();
    contact.displayName = "displayname";
    contact.mobilePhone = "123456890";
    ItemAttachment itemAttachmentContact = new ItemAttachment();
    itemAttachmentContact.oDataType = "#microsoft.graph.itemAttachment";
    itemAttachmentContact.name = "Attachment name";
    itemAttachmentContact.item = contact;
    itemAttachmentContact.item.oDataType = "microsoft.graph.contact";
    return itemAttachmentContact;
}
Also used : ItemAttachment(com.microsoft.graph.models.ItemAttachment) Contact(com.microsoft.graph.models.Contact)

Aggregations

Contact (com.microsoft.graph.models.Contact)6 ItemAttachment (com.microsoft.graph.models.ItemAttachment)6 JsonElement (com.google.gson.JsonElement)2 Attachment (com.microsoft.graph.models.Attachment)2 Event (com.microsoft.graph.models.Event)2 FileAttachment (com.microsoft.graph.models.FileAttachment)2 Test (org.junit.jupiter.api.Test)2