Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 726 Bytes

File metadata and controls

23 lines (15 loc) · 726 Bytes

PlacementReason

Placement source for ranked feed results. ORGANIC means the card was emitted by normal feed ranking. PROMO means the card was inserted by the homepage cards promo framework. PINNED means the card was moved to the head of the ranked stack (e.g. knowledge-gap pilot cards).

Example Usage

import com.glean.api_client.glean_api_client.models.components.PlacementReason;

PlacementReason value = PlacementReason.ORGANIC;

// Open enum: use .of() to create instances from custom string values
PlacementReason custom = PlacementReason.of("custom_value");

Values

Name Value
ORGANIC ORGANIC
PROMO PROMO
PINNED PINNED