All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.logmein.gotomeeting.api.model.OrganizerShort Maven / Gradle / Ivy

The newest version!
/*
 * © 2017 LogMeIn, Inc. All Rights Reserved.
 * All rights reserved.
 * 
 * This software is distributed under the terms and conditions of the
 * LogMeIn SDK License Agreement. Please see file LICENSE for details.
 * 
 * Auto-generated file.
 */


package com.logmein.gotomeeting.api.model;


import com.logmein.gotomeeting.api.common.JsonUtil;

/**
 * Describes a newly created organizer.
 */
public class OrganizerShort {

    /* The organizer's key */
    private Long key = null;

    /* The organizer's email address */
    private String email = null;

    /**
     * @return The organizer's key
     */
    public Long getKey() {
        return key;
    }

    /**
     * @param key The organizer's key
     */
    public void setKey(Long key) {
        this.key = key;
    }

    /**
     * @return The organizer's email address
     */
    public String getEmail() {
        return email;
    }

    /**
     * @param email The organizer's email address
     */
    public void setEmail(String email) {
        this.email = email;
    }

    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append("class OrganizerShort {\n");
        String keyString = JsonUtil.Stringify(key);
        if (keyString != null && !keyString.isEmpty())
            sb.append(String.format("  key: %s\n", keyString));
        String emailString = JsonUtil.Stringify(email);
        if (emailString != null && !emailString.isEmpty())
            sb.append(String.format("  email: %s\n", emailString));
        sb.append("}\n");
        return sb.toString();
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy