--- v24/common/goal_common.proto 2026-07-21 22:02:14.000000000 +0000 +++ v25/common/goal_common.proto 2026-07-21 22:02:31.000000000 +0000 @@ -29,14 +29,28 @@ // Lifecycle goal optimization value settings. message CustomerLifecycleOptimizationValueSettings { - // Value of the lifecycle goal. For example, for retention goals, value is the - // incremental conversion value for lapsed customers who are not of high - // value. - optional double additional_value = 1; + // Conversion value adjustment to be applied to (non high lifetime value) + // customers in the corresponding lifecycle. For example, for retention goals, + // conversion value adjustment is the incremental conversion value for lapsed + // customers who are not of high lifetime value. + oneof value_adjustment { + // Incremental conversion value. + double additional_value = 3; - // High lifetime value of the lifecycle goal. For example, for customer - // acquisition goals, high lifetime value is the incremental conversion value - // for lapsed customers who are of high value. High lifetime value should be - // greater than value, if set. - optional double additional_high_lifetime_value = 2; + // Conversion value multiplier. + double value_multiplier = 4; + } + + // Conversion value adjustment to be applied to customers in the corresponding + // lifecycle and identified as high lifetime value. For example, for customer + // retention goals, high lifetime value adjustment is the incremental + // conversion value for lapsed customers who are of high lifetime value. High + // lifetime value should be greater than value, if set. + oneof high_lifetime_value_adjustment { + // Incremental high lifetime conversion value. + double additional_high_lifetime_value = 5; + + // High lifetime conversion value multiplier. + double high_lifetime_value_multiplier = 6; + } }
/common/goal_common.proto
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2026-07-22(UTC)