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

com.logmein.gotowebinar.api.model.SecretKeyRequest Maven / Gradle / Ivy

There is a newer version: 2.9.0
Show 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.gotowebinar.api.model;


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

/**
 * Representation of a secret key
 */
public class SecretKeyRequest {

    /* A date time in ISO8601 format, e.g. 2019-07-01T22:00:00Z. The secret key will be activated at the given date */
    private String validFrom = null;

    /**
     * @return A date time in ISO8601 format, e.g. 2019-07-01T22:00:00Z. The secret key will be activated at the given date
     */
    public String getValidFrom() {
        return validFrom;
    }

    /**
     * @param validFrom A date time in ISO8601 format, e.g. 2019-07-01T22:00:00Z. The secret key will be activated at the given date
     */
    public void setValidFrom(String validFrom) {
        this.validFrom = validFrom;
    }

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





© 2015 - 2024 Weber Informatics LLC | Privacy Policy