org.hyperledger.acy_py.generated.model.CreateInvitationRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aries-client-python Show documentation
Show all versions of aries-client-python Show documentation
Aries Cloud Agent - Python: Java client implementation
/*
* aca-py client
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: v0.7.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package org.hyperledger.acy_py.generated.model;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/**
* CreateInvitationRequest
*/
@lombok.Data
@lombok.AllArgsConstructor
@lombok.NoArgsConstructor
@lombok.Builder
public class CreateInvitationRequest {
public static final String SERIALIZED_NAME_MEDIATION_ID = "mediation_id";
@SerializedName(SERIALIZED_NAME_MEDIATION_ID)
private String mediationId;
public static final String SERIALIZED_NAME_METADATA = "metadata";
@SerializedName(SERIALIZED_NAME_METADATA)
private Object metadata;
public static final String SERIALIZED_NAME_MY_LABEL = "my_label";
@SerializedName(SERIALIZED_NAME_MY_LABEL)
private String myLabel;
public static final String SERIALIZED_NAME_RECIPIENT_KEYS = "recipient_keys";
@SerializedName(SERIALIZED_NAME_RECIPIENT_KEYS)
private List recipientKeys = null;
public static final String SERIALIZED_NAME_ROUTING_KEYS = "routing_keys";
@SerializedName(SERIALIZED_NAME_ROUTING_KEYS)
private List routingKeys = null;
public static final String SERIALIZED_NAME_SERVICE_ENDPOINT = "service_endpoint";
@SerializedName(SERIALIZED_NAME_SERVICE_ENDPOINT)
private String serviceEndpoint;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy