Package models

Examples of models.ContactInformation


        request.cookies.putAll(cookies);
    //Create
    String name = "olympia";
    Subscriber subscriber = new Subscriber();
    subscriber.name = name;
    ContactInformation contact_information = new ContactInformation();
    contact_information.email = "lucas@olympia.com";
    subscriber.contact_information = contact_information;
    response = POST(request,
        "/api/subscribers", "application/json", gson.toJson(subscriber));
    assertStatus(StatusCode.CREATED, response);
View Full Code Here

TOP

Related Classes of models.ContactInformation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.