com.woorea.openstack.quantum.model.RouterInterface Maven / Gradle / Ivy
/*******************************************************************************
* Copyright (C) 2016 AT&T Intellectual Property. All rights reserved. This code is licensed under the Apache License, Version 2.0
*******************************************************************************/
package com.woorea.openstack.quantum.model;
import java.io.Serializable;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonRootName;
public class RouterInterface implements Serializable {
@JsonProperty("subnet_id")
String subnetId;
@JsonProperty("port_id")
String portId;
@JsonProperty("tenant_id")
String tenantId;
@JsonProperty("id")
String id;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy