Class AssetQueryFilterConditionInput
- java.lang.Object
-
- ch.brix.gql.client.InputObject
-
- ch.brix.gql.client.frontify.input_objects.AssetQueryFilterConditionInput
-
public class AssetQueryFilterConditionInput extends ch.brix.gql.client.InputObject
-
-
Constructor Summary
Constructors Constructor Description AssetQueryFilterConditionInput()
-
Method Summary
Modifier and Type Method Description AssetQueryFilterConditionInputcustomMetadataPropertyId(IdScalar v)**REQUIRED** for type `CUSTOM_METADATA_VALUE` to identify which `CustomMetadataProperty` it is compared against.AssetQueryFilterConditionInputmetadataFieldId(IdScalar v)**REQUIRED** for type `METADATA_VALUE` to identify which metadata field it is compared against.AssetQueryFilterConditionInputoperator(ConditionOperator v)Defines how the value of the `Asset` is compared to the provided value.AssetQueryFilterConditionInputtype(ConditionType v)Defines which property of the `Asset` is compared to the provided value.AssetQueryFilterConditionInputvalue(StringScalar v)The value which is compared against the property of the `Asset`.
-
-
-
Method Detail
-
type
public AssetQueryFilterConditionInput type(ConditionType v)
Defines which property of the `Asset` is compared to the provided value.
-
operator
public AssetQueryFilterConditionInput operator(ConditionOperator v)
Defines how the value of the `Asset` is compared to the provided value.
-
value
public AssetQueryFilterConditionInput value(StringScalar v)
The value which is compared against the property of the `Asset`.
-
metadataFieldId
public AssetQueryFilterConditionInput metadataFieldId(IdScalar v)
**REQUIRED** for type `METADATA_VALUE` to identify which metadata field it is compared against. You can find all available `metadataFields` on the project.
-
customMetadataPropertyId
public AssetQueryFilterConditionInput customMetadataPropertyId(IdScalar v)
**REQUIRED** for type `CUSTOM_METADATA_VALUE` to identify which `CustomMetadataProperty` it is compared against. You can find all available `CustomMetadataProperty` on the project.
-
-