Search in sources :

Example 1 with Attendee

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

the class OutlookTests method getEvent.

private Event getEvent() {
    Event event = new Event();
    java.util.List<String> emails = Arrays.asList("test_email@test_domain.com");
    java.util.List<Attendee> attendees = new ArrayList<>();
    for (String email : emails) {
        EmailAddress emailAddress = new EmailAddress();
        emailAddress.address = email;
        Attendee attendee = new Attendee();
        attendee.emailAddress = emailAddress;
        attendees.add(attendee);
    }
    DateTimeTimeZone start = new DateTimeTimeZone();
    start.timeZone = "UTC";
    start.dateTime = "2018-10-16T06:15:26.544Z";
    DateTimeTimeZone end = new DateTimeTimeZone();
    end.timeZone = "UTC";
    end.dateTime = "2018-11-18T07:30:26.544Z";
    event.start = start;
    event.end = end;
    event.subject = "Test Event Subject";
    event.id = "1234";
    return event;
}
Also used : ArrayList(java.util.ArrayList) Event(com.microsoft.graph.models.Event) Attendee(com.microsoft.graph.models.Attendee) EmailAddress(com.microsoft.graph.models.EmailAddress) DateTimeTimeZone(com.microsoft.graph.models.DateTimeTimeZone)

Example 2 with Attendee

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

the class CollectionPageSerializerTests method getEvent.

private Event getEvent() {
    Event event = new Event();
    java.util.List<String> emails = Arrays.asList("test_email@test_domain.com");
    java.util.List<Attendee> attendees = new ArrayList<>();
    for (String email : emails) {
        EmailAddress emailAddress = new EmailAddress();
        emailAddress.address = email;
        Attendee attendee = new Attendee();
        attendee.emailAddress = emailAddress;
        attendees.add(attendee);
    }
    DateTimeTimeZone start = new DateTimeTimeZone();
    start.timeZone = "UTC";
    start.dateTime = "2018-10-16T06:15:26.544Z";
    DateTimeTimeZone end = new DateTimeTimeZone();
    end.timeZone = "UTC";
    end.dateTime = "2018-11-18T07:30:26.544Z";
    event.start = start;
    event.end = end;
    event.subject = "Test Event Subject";
    event.id = "1234";
    return event;
}
Also used : ArrayList(java.util.ArrayList) Event(com.microsoft.graph.models.Event) Attendee(com.microsoft.graph.models.Attendee) EmailAddress(com.microsoft.graph.models.EmailAddress) DateTimeTimeZone(com.microsoft.graph.models.DateTimeTimeZone)

Example 3 with Attendee

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

the class CollectionPageSerializerTests method getEvent.

private Event getEvent() {
    Event event = new Event();
    java.util.List<String> emails = Arrays.asList("test_email@test_domain.com");
    java.util.List<Attendee> attendees = new ArrayList<>();
    for (String email : emails) {
        EmailAddress emailAddress = new EmailAddress();
        emailAddress.address = email;
        Attendee attendee = new Attendee();
        attendee.emailAddress = emailAddress;
        attendees.add(attendee);
    }
    DateTimeTimeZone start = new DateTimeTimeZone();
    start.timeZone = "UTC";
    start.dateTime = "2018-10-16T06:15:26.544Z";
    DateTimeTimeZone end = new DateTimeTimeZone();
    end.timeZone = "UTC";
    end.dateTime = "2018-11-18T07:30:26.544Z";
    event.start = start;
    event.end = end;
    event.subject = "Test Event Subject";
    event.id = "1234";
    return event;
}
Also used : ArrayList(java.util.ArrayList) Event(com.microsoft.graph.models.Event) Attendee(com.microsoft.graph.models.Attendee) EmailAddress(com.microsoft.graph.models.EmailAddress) DateTimeTimeZone(com.microsoft.graph.models.DateTimeTimeZone)

Example 4 with Attendee

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

the class OutlookTests method getEvent.

private Event getEvent() {
    Event event = new Event();
    java.util.List<String> emails = Arrays.asList("test_email@test_domain.com");
    java.util.List<Attendee> attendees = new ArrayList<>();
    for (String email : emails) {
        EmailAddress emailAddress = new EmailAddress();
        emailAddress.address = email;
        Attendee attendee = new Attendee();
        attendee.emailAddress = emailAddress;
        attendees.add(attendee);
    }
    DateTimeTimeZone start = new DateTimeTimeZone();
    start.timeZone = "UTC";
    start.dateTime = "2018-10-16T06:15:26.544Z";
    DateTimeTimeZone end = new DateTimeTimeZone();
    end.timeZone = "UTC";
    end.dateTime = "2018-11-18T07:30:26.544Z";
    event.start = start;
    event.end = end;
    event.subject = "Test Event Subject";
    event.id = "1234";
    return event;
}
Also used : ArrayList(java.util.ArrayList) Event(com.microsoft.graph.models.Event) Attendee(com.microsoft.graph.models.Attendee) EmailAddress(com.microsoft.graph.models.EmailAddress) DateTimeTimeZone(com.microsoft.graph.models.DateTimeTimeZone)

Aggregations

Attendee (com.microsoft.graph.models.Attendee)4 DateTimeTimeZone (com.microsoft.graph.models.DateTimeTimeZone)4 EmailAddress (com.microsoft.graph.models.EmailAddress)4 Event (com.microsoft.graph.models.Event)4 ArrayList (java.util.ArrayList)4