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

io.permit.sdk.openapi.models.RelationshipTupleObj Maven / Gradle / Ivy

There is a newer version: 983f46e
Show newest version

package io.permit.sdk.openapi.models;

import javax.annotation.Generated;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;


/**
 * RelationshipTupleObj
 * 

* * */ @Generated("jsonschema2pojo") public class RelationshipTupleObj { /** * Subject Str *

* * (Required) * */ @SerializedName("subject_str") @Expose public String subjectStr; /** * Relation Str *

* * (Required) * */ @SerializedName("relation_str") @Expose public String relationStr; /** * Object Str *

* * (Required) * */ @SerializedName("object_str") @Expose public String objectStr; /** * No args constructor for use in serialization * */ public RelationshipTupleObj() { } /** * * @param relationStr * @param objectStr * @param subjectStr */ public RelationshipTupleObj(String subjectStr, String relationStr, String objectStr) { super(); this.subjectStr = subjectStr; this.relationStr = relationStr; this.objectStr = objectStr; } public RelationshipTupleObj withSubjectStr(String subjectStr) { this.subjectStr = subjectStr; return this; } public RelationshipTupleObj withRelationStr(String relationStr) { this.relationStr = relationStr; return this; } public RelationshipTupleObj withObjectStr(String objectStr) { this.objectStr = objectStr; return this; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy