com.hazelcast.cloud.maven.model.CustomerApiLogin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hazelcast-cloud-maven-plugin Show documentation
Show all versions of hazelcast-cloud-maven-plugin Show documentation
Maven plugin for the operations with Hazelcast Cloud
package com.hazelcast.cloud.maven.model;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@NoArgsConstructor
@AllArgsConstructor
@Builder
public class CustomerApiLogin {
private String apiKey;
private String apiSecret;
}