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

software.amazon.awssdk.services.sagemaker.model.DescribeArtifactResponse Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon SageMaker module holds the client classes that are used for communicating with Amazon SageMaker Service

There is a newer version: 2.31.2
Show newest version
/*
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
 * the License. A copy of the License is located at
 * 
 * http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
 * and limitations under the License.
 */

package software.amazon.awssdk.services.sagemaker.model;

import java.time.Instant;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import java.util.function.BiConsumer;
import java.util.function.Consumer;
import java.util.function.Function;
import software.amazon.awssdk.annotations.Generated;
import software.amazon.awssdk.core.SdkField;
import software.amazon.awssdk.core.SdkPojo;
import software.amazon.awssdk.core.protocol.MarshallLocation;
import software.amazon.awssdk.core.protocol.MarshallingType;
import software.amazon.awssdk.core.traits.LocationTrait;
import software.amazon.awssdk.core.traits.MapTrait;
import software.amazon.awssdk.core.util.DefaultSdkAutoConstructMap;
import software.amazon.awssdk.core.util.SdkAutoConstructMap;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;

/**
 */
@Generated("software.amazon.awssdk:codegen")
public final class DescribeArtifactResponse extends SageMakerResponse implements
        ToCopyableBuilder {
    private static final SdkField ARTIFACT_NAME_FIELD = SdkField. builder(MarshallingType.STRING)
            .memberName("ArtifactName").getter(getter(DescribeArtifactResponse::artifactName))
            .setter(setter(Builder::artifactName))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ArtifactName").build()).build();

    private static final SdkField ARTIFACT_ARN_FIELD = SdkField. builder(MarshallingType.STRING)
            .memberName("ArtifactArn").getter(getter(DescribeArtifactResponse::artifactArn)).setter(setter(Builder::artifactArn))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ArtifactArn").build()).build();

    private static final SdkField SOURCE_FIELD = SdkField. builder(MarshallingType.SDK_POJO)
            .memberName("Source").getter(getter(DescribeArtifactResponse::source)).setter(setter(Builder::source))
            .constructor(ArtifactSource::builder)
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Source").build()).build();

    private static final SdkField ARTIFACT_TYPE_FIELD = SdkField. builder(MarshallingType.STRING)
            .memberName("ArtifactType").getter(getter(DescribeArtifactResponse::artifactType))
            .setter(setter(Builder::artifactType))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ArtifactType").build()).build();

    private static final SdkField> PROPERTIES_FIELD = SdkField
            .> builder(MarshallingType.MAP)
            .memberName("Properties")
            .getter(getter(DescribeArtifactResponse::properties))
            .setter(setter(Builder::properties))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Properties").build(),
                    MapTrait.builder()
                            .keyLocationName("key")
                            .valueLocationName("value")
                            .valueFieldInfo(
                                    SdkField. builder(MarshallingType.STRING)
                                            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD)
                                                    .locationName("value").build()).build()).build()).build();

    private static final SdkField CREATION_TIME_FIELD = SdkField. builder(MarshallingType.INSTANT)
            .memberName("CreationTime").getter(getter(DescribeArtifactResponse::creationTime))
            .setter(setter(Builder::creationTime))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("CreationTime").build()).build();

    private static final SdkField CREATED_BY_FIELD = SdkField. builder(MarshallingType.SDK_POJO)
            .memberName("CreatedBy").getter(getter(DescribeArtifactResponse::createdBy)).setter(setter(Builder::createdBy))
            .constructor(UserContext::builder)
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("CreatedBy").build()).build();

    private static final SdkField LAST_MODIFIED_TIME_FIELD = SdkField. builder(MarshallingType.INSTANT)
            .memberName("LastModifiedTime").getter(getter(DescribeArtifactResponse::lastModifiedTime))
            .setter(setter(Builder::lastModifiedTime))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("LastModifiedTime").build()).build();

    private static final SdkField LAST_MODIFIED_BY_FIELD = SdkField. builder(MarshallingType.SDK_POJO)
            .memberName("LastModifiedBy").getter(getter(DescribeArtifactResponse::lastModifiedBy))
            .setter(setter(Builder::lastModifiedBy)).constructor(UserContext::builder)
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("LastModifiedBy").build()).build();

    private static final SdkField METADATA_PROPERTIES_FIELD = SdkField
            . builder(MarshallingType.SDK_POJO).memberName("MetadataProperties")
            .getter(getter(DescribeArtifactResponse::metadataProperties)).setter(setter(Builder::metadataProperties))
            .constructor(MetadataProperties::builder)
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("MetadataProperties").build())
            .build();

    private static final SdkField LINEAGE_GROUP_ARN_FIELD = SdkField. builder(MarshallingType.STRING)
            .memberName("LineageGroupArn").getter(getter(DescribeArtifactResponse::lineageGroupArn))
            .setter(setter(Builder::lineageGroupArn))
            .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("LineageGroupArn").build()).build();

    private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(ARTIFACT_NAME_FIELD,
            ARTIFACT_ARN_FIELD, SOURCE_FIELD, ARTIFACT_TYPE_FIELD, PROPERTIES_FIELD, CREATION_TIME_FIELD, CREATED_BY_FIELD,
            LAST_MODIFIED_TIME_FIELD, LAST_MODIFIED_BY_FIELD, METADATA_PROPERTIES_FIELD, LINEAGE_GROUP_ARN_FIELD));

    private static final Map> SDK_NAME_TO_FIELD = memberNameToFieldInitializer();

    private final String artifactName;

    private final String artifactArn;

    private final ArtifactSource source;

    private final String artifactType;

    private final Map properties;

    private final Instant creationTime;

    private final UserContext createdBy;

    private final Instant lastModifiedTime;

    private final UserContext lastModifiedBy;

    private final MetadataProperties metadataProperties;

    private final String lineageGroupArn;

    private DescribeArtifactResponse(BuilderImpl builder) {
        super(builder);
        this.artifactName = builder.artifactName;
        this.artifactArn = builder.artifactArn;
        this.source = builder.source;
        this.artifactType = builder.artifactType;
        this.properties = builder.properties;
        this.creationTime = builder.creationTime;
        this.createdBy = builder.createdBy;
        this.lastModifiedTime = builder.lastModifiedTime;
        this.lastModifiedBy = builder.lastModifiedBy;
        this.metadataProperties = builder.metadataProperties;
        this.lineageGroupArn = builder.lineageGroupArn;
    }

    /**
     * 

* The name of the artifact. *

* * @return The name of the artifact. */ public final String artifactName() { return artifactName; } /** *

* The Amazon Resource Name (ARN) of the artifact. *

* * @return The Amazon Resource Name (ARN) of the artifact. */ public final String artifactArn() { return artifactArn; } /** *

* The source of the artifact. *

* * @return The source of the artifact. */ public final ArtifactSource source() { return source; } /** *

* The type of the artifact. *

* * @return The type of the artifact. */ public final String artifactType() { return artifactType; } /** * For responses, this returns true if the service returned a value for the Properties property. This DOES NOT check * that the value is non-empty (for which, you should check the {@code isEmpty()} method on the property). This is * useful because the SDK will never return a null collection or map, but you may need to differentiate between the * service returning nothing (or null) and the service returning an empty collection or map. For requests, this * returns true if a value for the property was specified in the request builder, and false if a value was not * specified. */ public final boolean hasProperties() { return properties != null && !(properties instanceof SdkAutoConstructMap); } /** *

* A list of the artifact's properties. *

*

* Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. *

*

* This method will never return null. If you would like to know whether the service returned this field (so that * you can differentiate between null and empty), you can use the {@link #hasProperties} method. *

* * @return A list of the artifact's properties. */ public final Map properties() { return properties; } /** *

* When the artifact was created. *

* * @return When the artifact was created. */ public final Instant creationTime() { return creationTime; } /** * Returns the value of the CreatedBy property for this object. * * @return The value of the CreatedBy property for this object. */ public final UserContext createdBy() { return createdBy; } /** *

* When the artifact was last modified. *

* * @return When the artifact was last modified. */ public final Instant lastModifiedTime() { return lastModifiedTime; } /** * Returns the value of the LastModifiedBy property for this object. * * @return The value of the LastModifiedBy property for this object. */ public final UserContext lastModifiedBy() { return lastModifiedBy; } /** * Returns the value of the MetadataProperties property for this object. * * @return The value of the MetadataProperties property for this object. */ public final MetadataProperties metadataProperties() { return metadataProperties; } /** *

* The Amazon Resource Name (ARN) of the lineage group. *

* * @return The Amazon Resource Name (ARN) of the lineage group. */ public final String lineageGroupArn() { return lineageGroupArn; } @Override public Builder toBuilder() { return new BuilderImpl(this); } public static Builder builder() { return new BuilderImpl(); } public static Class serializableBuilderClass() { return BuilderImpl.class; } @Override public final int hashCode() { int hashCode = 1; hashCode = 31 * hashCode + super.hashCode(); hashCode = 31 * hashCode + Objects.hashCode(artifactName()); hashCode = 31 * hashCode + Objects.hashCode(artifactArn()); hashCode = 31 * hashCode + Objects.hashCode(source()); hashCode = 31 * hashCode + Objects.hashCode(artifactType()); hashCode = 31 * hashCode + Objects.hashCode(hasProperties() ? properties() : null); hashCode = 31 * hashCode + Objects.hashCode(creationTime()); hashCode = 31 * hashCode + Objects.hashCode(createdBy()); hashCode = 31 * hashCode + Objects.hashCode(lastModifiedTime()); hashCode = 31 * hashCode + Objects.hashCode(lastModifiedBy()); hashCode = 31 * hashCode + Objects.hashCode(metadataProperties()); hashCode = 31 * hashCode + Objects.hashCode(lineageGroupArn()); return hashCode; } @Override public final boolean equals(Object obj) { return super.equals(obj) && equalsBySdkFields(obj); } @Override public final boolean equalsBySdkFields(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (!(obj instanceof DescribeArtifactResponse)) { return false; } DescribeArtifactResponse other = (DescribeArtifactResponse) obj; return Objects.equals(artifactName(), other.artifactName()) && Objects.equals(artifactArn(), other.artifactArn()) && Objects.equals(source(), other.source()) && Objects.equals(artifactType(), other.artifactType()) && hasProperties() == other.hasProperties() && Objects.equals(properties(), other.properties()) && Objects.equals(creationTime(), other.creationTime()) && Objects.equals(createdBy(), other.createdBy()) && Objects.equals(lastModifiedTime(), other.lastModifiedTime()) && Objects.equals(lastModifiedBy(), other.lastModifiedBy()) && Objects.equals(metadataProperties(), other.metadataProperties()) && Objects.equals(lineageGroupArn(), other.lineageGroupArn()); } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. */ @Override public final String toString() { return ToString.builder("DescribeArtifactResponse").add("ArtifactName", artifactName()).add("ArtifactArn", artifactArn()) .add("Source", source()).add("ArtifactType", artifactType()) .add("Properties", hasProperties() ? properties() : null).add("CreationTime", creationTime()) .add("CreatedBy", createdBy()).add("LastModifiedTime", lastModifiedTime()) .add("LastModifiedBy", lastModifiedBy()).add("MetadataProperties", metadataProperties()) .add("LineageGroupArn", lineageGroupArn()).build(); } public final Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "ArtifactName": return Optional.ofNullable(clazz.cast(artifactName())); case "ArtifactArn": return Optional.ofNullable(clazz.cast(artifactArn())); case "Source": return Optional.ofNullable(clazz.cast(source())); case "ArtifactType": return Optional.ofNullable(clazz.cast(artifactType())); case "Properties": return Optional.ofNullable(clazz.cast(properties())); case "CreationTime": return Optional.ofNullable(clazz.cast(creationTime())); case "CreatedBy": return Optional.ofNullable(clazz.cast(createdBy())); case "LastModifiedTime": return Optional.ofNullable(clazz.cast(lastModifiedTime())); case "LastModifiedBy": return Optional.ofNullable(clazz.cast(lastModifiedBy())); case "MetadataProperties": return Optional.ofNullable(clazz.cast(metadataProperties())); case "LineageGroupArn": return Optional.ofNullable(clazz.cast(lineageGroupArn())); default: return Optional.empty(); } } @Override public final List> sdkFields() { return SDK_FIELDS; } @Override public final Map> sdkFieldNameToField() { return SDK_NAME_TO_FIELD; } private static Map> memberNameToFieldInitializer() { Map> map = new HashMap<>(); map.put("ArtifactName", ARTIFACT_NAME_FIELD); map.put("ArtifactArn", ARTIFACT_ARN_FIELD); map.put("Source", SOURCE_FIELD); map.put("ArtifactType", ARTIFACT_TYPE_FIELD); map.put("Properties", PROPERTIES_FIELD); map.put("CreationTime", CREATION_TIME_FIELD); map.put("CreatedBy", CREATED_BY_FIELD); map.put("LastModifiedTime", LAST_MODIFIED_TIME_FIELD); map.put("LastModifiedBy", LAST_MODIFIED_BY_FIELD); map.put("MetadataProperties", METADATA_PROPERTIES_FIELD); map.put("LineageGroupArn", LINEAGE_GROUP_ARN_FIELD); return Collections.unmodifiableMap(map); } private static Function getter(Function g) { return obj -> g.apply((DescribeArtifactResponse) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends SageMakerResponse.Builder, SdkPojo, CopyableBuilder { /** *

* The name of the artifact. *

* * @param artifactName * The name of the artifact. * @return Returns a reference to this object so that method calls can be chained together. */ Builder artifactName(String artifactName); /** *

* The Amazon Resource Name (ARN) of the artifact. *

* * @param artifactArn * The Amazon Resource Name (ARN) of the artifact. * @return Returns a reference to this object so that method calls can be chained together. */ Builder artifactArn(String artifactArn); /** *

* The source of the artifact. *

* * @param source * The source of the artifact. * @return Returns a reference to this object so that method calls can be chained together. */ Builder source(ArtifactSource source); /** *

* The source of the artifact. *

* This is a convenience method that creates an instance of the {@link ArtifactSource.Builder} avoiding the need * to create one manually via {@link ArtifactSource#builder()}. * *

* When the {@link Consumer} completes, {@link ArtifactSource.Builder#build()} is called immediately and its * result is passed to {@link #source(ArtifactSource)}. * * @param source * a consumer that will call methods on {@link ArtifactSource.Builder} * @return Returns a reference to this object so that method calls can be chained together. * @see #source(ArtifactSource) */ default Builder source(Consumer source) { return source(ArtifactSource.builder().applyMutation(source).build()); } /** *

* The type of the artifact. *

* * @param artifactType * The type of the artifact. * @return Returns a reference to this object so that method calls can be chained together. */ Builder artifactType(String artifactType); /** *

* A list of the artifact's properties. *

* * @param properties * A list of the artifact's properties. * @return Returns a reference to this object so that method calls can be chained together. */ Builder properties(Map properties); /** *

* When the artifact was created. *

* * @param creationTime * When the artifact was created. * @return Returns a reference to this object so that method calls can be chained together. */ Builder creationTime(Instant creationTime); /** * Sets the value of the CreatedBy property for this object. * * @param createdBy * The new value for the CreatedBy property for this object. * @return Returns a reference to this object so that method calls can be chained together. */ Builder createdBy(UserContext createdBy); /** * Sets the value of the CreatedBy property for this object. * * This is a convenience method that creates an instance of the {@link UserContext.Builder} avoiding the need to * create one manually via {@link UserContext#builder()}. * *

* When the {@link Consumer} completes, {@link UserContext.Builder#build()} is called immediately and its result * is passed to {@link #createdBy(UserContext)}. * * @param createdBy * a consumer that will call methods on {@link UserContext.Builder} * @return Returns a reference to this object so that method calls can be chained together. * @see #createdBy(UserContext) */ default Builder createdBy(Consumer createdBy) { return createdBy(UserContext.builder().applyMutation(createdBy).build()); } /** *

* When the artifact was last modified. *

* * @param lastModifiedTime * When the artifact was last modified. * @return Returns a reference to this object so that method calls can be chained together. */ Builder lastModifiedTime(Instant lastModifiedTime); /** * Sets the value of the LastModifiedBy property for this object. * * @param lastModifiedBy * The new value for the LastModifiedBy property for this object. * @return Returns a reference to this object so that method calls can be chained together. */ Builder lastModifiedBy(UserContext lastModifiedBy); /** * Sets the value of the LastModifiedBy property for this object. * * This is a convenience method that creates an instance of the {@link UserContext.Builder} avoiding the need to * create one manually via {@link UserContext#builder()}. * *

* When the {@link Consumer} completes, {@link UserContext.Builder#build()} is called immediately and its result * is passed to {@link #lastModifiedBy(UserContext)}. * * @param lastModifiedBy * a consumer that will call methods on {@link UserContext.Builder} * @return Returns a reference to this object so that method calls can be chained together. * @see #lastModifiedBy(UserContext) */ default Builder lastModifiedBy(Consumer lastModifiedBy) { return lastModifiedBy(UserContext.builder().applyMutation(lastModifiedBy).build()); } /** * Sets the value of the MetadataProperties property for this object. * * @param metadataProperties * The new value for the MetadataProperties property for this object. * @return Returns a reference to this object so that method calls can be chained together. */ Builder metadataProperties(MetadataProperties metadataProperties); /** * Sets the value of the MetadataProperties property for this object. * * This is a convenience method that creates an instance of the {@link MetadataProperties.Builder} avoiding the * need to create one manually via {@link MetadataProperties#builder()}. * *

* When the {@link Consumer} completes, {@link MetadataProperties.Builder#build()} is called immediately and its * result is passed to {@link #metadataProperties(MetadataProperties)}. * * @param metadataProperties * a consumer that will call methods on {@link MetadataProperties.Builder} * @return Returns a reference to this object so that method calls can be chained together. * @see #metadataProperties(MetadataProperties) */ default Builder metadataProperties(Consumer metadataProperties) { return metadataProperties(MetadataProperties.builder().applyMutation(metadataProperties).build()); } /** *

* The Amazon Resource Name (ARN) of the lineage group. *

* * @param lineageGroupArn * The Amazon Resource Name (ARN) of the lineage group. * @return Returns a reference to this object so that method calls can be chained together. */ Builder lineageGroupArn(String lineageGroupArn); } static final class BuilderImpl extends SageMakerResponse.BuilderImpl implements Builder { private String artifactName; private String artifactArn; private ArtifactSource source; private String artifactType; private Map properties = DefaultSdkAutoConstructMap.getInstance(); private Instant creationTime; private UserContext createdBy; private Instant lastModifiedTime; private UserContext lastModifiedBy; private MetadataProperties metadataProperties; private String lineageGroupArn; private BuilderImpl() { } private BuilderImpl(DescribeArtifactResponse model) { super(model); artifactName(model.artifactName); artifactArn(model.artifactArn); source(model.source); artifactType(model.artifactType); properties(model.properties); creationTime(model.creationTime); createdBy(model.createdBy); lastModifiedTime(model.lastModifiedTime); lastModifiedBy(model.lastModifiedBy); metadataProperties(model.metadataProperties); lineageGroupArn(model.lineageGroupArn); } public final String getArtifactName() { return artifactName; } public final void setArtifactName(String artifactName) { this.artifactName = artifactName; } @Override public final Builder artifactName(String artifactName) { this.artifactName = artifactName; return this; } public final String getArtifactArn() { return artifactArn; } public final void setArtifactArn(String artifactArn) { this.artifactArn = artifactArn; } @Override public final Builder artifactArn(String artifactArn) { this.artifactArn = artifactArn; return this; } public final ArtifactSource.Builder getSource() { return source != null ? source.toBuilder() : null; } public final void setSource(ArtifactSource.BuilderImpl source) { this.source = source != null ? source.build() : null; } @Override public final Builder source(ArtifactSource source) { this.source = source; return this; } public final String getArtifactType() { return artifactType; } public final void setArtifactType(String artifactType) { this.artifactType = artifactType; } @Override public final Builder artifactType(String artifactType) { this.artifactType = artifactType; return this; } public final Map getProperties() { if (properties instanceof SdkAutoConstructMap) { return null; } return properties; } public final void setProperties(Map properties) { this.properties = LineageEntityParametersCopier.copy(properties); } @Override public final Builder properties(Map properties) { this.properties = LineageEntityParametersCopier.copy(properties); return this; } public final Instant getCreationTime() { return creationTime; } public final void setCreationTime(Instant creationTime) { this.creationTime = creationTime; } @Override public final Builder creationTime(Instant creationTime) { this.creationTime = creationTime; return this; } public final UserContext.Builder getCreatedBy() { return createdBy != null ? createdBy.toBuilder() : null; } public final void setCreatedBy(UserContext.BuilderImpl createdBy) { this.createdBy = createdBy != null ? createdBy.build() : null; } @Override public final Builder createdBy(UserContext createdBy) { this.createdBy = createdBy; return this; } public final Instant getLastModifiedTime() { return lastModifiedTime; } public final void setLastModifiedTime(Instant lastModifiedTime) { this.lastModifiedTime = lastModifiedTime; } @Override public final Builder lastModifiedTime(Instant lastModifiedTime) { this.lastModifiedTime = lastModifiedTime; return this; } public final UserContext.Builder getLastModifiedBy() { return lastModifiedBy != null ? lastModifiedBy.toBuilder() : null; } public final void setLastModifiedBy(UserContext.BuilderImpl lastModifiedBy) { this.lastModifiedBy = lastModifiedBy != null ? lastModifiedBy.build() : null; } @Override public final Builder lastModifiedBy(UserContext lastModifiedBy) { this.lastModifiedBy = lastModifiedBy; return this; } public final MetadataProperties.Builder getMetadataProperties() { return metadataProperties != null ? metadataProperties.toBuilder() : null; } public final void setMetadataProperties(MetadataProperties.BuilderImpl metadataProperties) { this.metadataProperties = metadataProperties != null ? metadataProperties.build() : null; } @Override public final Builder metadataProperties(MetadataProperties metadataProperties) { this.metadataProperties = metadataProperties; return this; } public final String getLineageGroupArn() { return lineageGroupArn; } public final void setLineageGroupArn(String lineageGroupArn) { this.lineageGroupArn = lineageGroupArn; } @Override public final Builder lineageGroupArn(String lineageGroupArn) { this.lineageGroupArn = lineageGroupArn; return this; } @Override public DescribeArtifactResponse build() { return new DescribeArtifactResponse(this); } @Override public List> sdkFields() { return SDK_FIELDS; } @Override public Map> sdkFieldNameToField() { return SDK_NAME_TO_FIELD; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy