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

com.microsoft.graph.beta.generated.models.MobileAppRelationship Maven / Gradle / Ivy

There is a newer version: 6.26.0
Show newest version
package com.microsoft.graph.beta.models;

import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
import com.microsoft.kiota.serialization.SerializationWriter;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
/**
 * Describes a relationship between two mobile apps.
 */
@jakarta.annotation.Generated("com.microsoft.kiota")
public class MobileAppRelationship extends Entity implements Parsable {
    /**
     * Instantiates a new {@link MobileAppRelationship} and sets the default values.
     */
    public MobileAppRelationship() {
        super();
    }
    /**
     * Creates a new instance of the appropriate class based on discriminator value
     * @param parseNode The parse node to use to read the discriminator value and create the object
     * @return a {@link MobileAppRelationship}
     */
    @jakarta.annotation.Nonnull
    public static MobileAppRelationship createFromDiscriminatorValue(@jakarta.annotation.Nonnull final ParseNode parseNode) {
        Objects.requireNonNull(parseNode);
        final ParseNode mappingValueNode = parseNode.getChildNode("@odata.type");
        if (mappingValueNode != null) {
            final String mappingValue = mappingValueNode.getStringValue();
            switch (mappingValue) {
                case "#microsoft.graph.mobileAppDependency": return new MobileAppDependency();
                case "#microsoft.graph.mobileAppSupersedence": return new MobileAppSupersedence();
            }
        }
        return new MobileAppRelationship();
    }
    /**
     * The deserialization information for the current model
     * @return a {@link Map>}
     */
    @jakarta.annotation.Nonnull
    public Map> getFieldDeserializers() {
        final HashMap> deserializerMap = new HashMap>(super.getFieldDeserializers());
        deserializerMap.put("targetDisplayName", (n) -> { this.setTargetDisplayName(n.getStringValue()); });
        deserializerMap.put("targetDisplayVersion", (n) -> { this.setTargetDisplayVersion(n.getStringValue()); });
        deserializerMap.put("targetId", (n) -> { this.setTargetId(n.getStringValue()); });
        deserializerMap.put("targetPublisher", (n) -> { this.setTargetPublisher(n.getStringValue()); });
        deserializerMap.put("targetType", (n) -> { this.setTargetType(n.getEnumValue(MobileAppRelationshipType::forValue)); });
        return deserializerMap;
    }
    /**
     * Gets the targetDisplayName property value. The display name of the app that is the target of the mobile app relationship entity. Read-Only. This property is read-only.
     * @return a {@link String}
     */
    @jakarta.annotation.Nullable
    public String getTargetDisplayName() {
        return this.backingStore.get("targetDisplayName");
    }
    /**
     * Gets the targetDisplayVersion property value. The display version of the app that is the target of the mobile app relationship entity. Read-Only. This property is read-only.
     * @return a {@link String}
     */
    @jakarta.annotation.Nullable
    public String getTargetDisplayVersion() {
        return this.backingStore.get("targetDisplayVersion");
    }
    /**
     * Gets the targetId property value. App ID of the app that is the target of the mobile app relationship entity. Read-Only
     * @return a {@link String}
     */
    @jakarta.annotation.Nullable
    public String getTargetId() {
        return this.backingStore.get("targetId");
    }
    /**
     * Gets the targetPublisher property value. The publisher of the app that is the target of the mobile app relationship entity. Read-Only. This property is read-only.
     * @return a {@link String}
     */
    @jakarta.annotation.Nullable
    public String getTargetPublisher() {
        return this.backingStore.get("targetPublisher");
    }
    /**
     * Gets the targetType property value. Indicates whether the target of a relationship is the parent or the child in the relationship.
     * @return a {@link MobileAppRelationshipType}
     */
    @jakarta.annotation.Nullable
    public MobileAppRelationshipType getTargetType() {
        return this.backingStore.get("targetType");
    }
    /**
     * Serializes information the current object
     * @param writer Serialization writer to use to serialize this model
     */
    public void serialize(@jakarta.annotation.Nonnull final SerializationWriter writer) {
        Objects.requireNonNull(writer);
        super.serialize(writer);
        writer.writeStringValue("targetId", this.getTargetId());
        writer.writeEnumValue("targetType", this.getTargetType());
    }
    /**
     * Sets the targetDisplayName property value. The display name of the app that is the target of the mobile app relationship entity. Read-Only. This property is read-only.
     * @param value Value to set for the targetDisplayName property.
     */
    public void setTargetDisplayName(@jakarta.annotation.Nullable final String value) {
        this.backingStore.set("targetDisplayName", value);
    }
    /**
     * Sets the targetDisplayVersion property value. The display version of the app that is the target of the mobile app relationship entity. Read-Only. This property is read-only.
     * @param value Value to set for the targetDisplayVersion property.
     */
    public void setTargetDisplayVersion(@jakarta.annotation.Nullable final String value) {
        this.backingStore.set("targetDisplayVersion", value);
    }
    /**
     * Sets the targetId property value. App ID of the app that is the target of the mobile app relationship entity. Read-Only
     * @param value Value to set for the targetId property.
     */
    public void setTargetId(@jakarta.annotation.Nullable final String value) {
        this.backingStore.set("targetId", value);
    }
    /**
     * Sets the targetPublisher property value. The publisher of the app that is the target of the mobile app relationship entity. Read-Only. This property is read-only.
     * @param value Value to set for the targetPublisher property.
     */
    public void setTargetPublisher(@jakarta.annotation.Nullable final String value) {
        this.backingStore.set("targetPublisher", value);
    }
    /**
     * Sets the targetType property value. Indicates whether the target of a relationship is the parent or the child in the relationship.
     * @param value Value to set for the targetType property.
     */
    public void setTargetType(@jakarta.annotation.Nullable final MobileAppRelationshipType value) {
        this.backingStore.set("targetType", value);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy