/** * @public * @enum */ export declare const ValidationExceptionErrorCode: { readonly ACTION_NOT_PERMITTED: "ACTION_NOT_PERMITTED"; readonly DUPLICATE_KEY_VALUE: "DUPLICATE_KEY_VALUE"; readonly INVALID_ENUM_VALUE: "INVALID_ENUM_VALUE"; readonly INVALID_RESOURCE_STATE: "INVALID_RESOURCE_STATE"; readonly INVALID_STRING_FORMAT: "INVALID_STRING_FORMAT"; readonly INVALID_VALUE: "INVALID_VALUE"; readonly NOT_ENOUGH_VALUES: "NOT_ENOUGH_VALUES"; readonly REQUIRED_FIELD_MISSING: "REQUIRED_FIELD_MISSING"; readonly TOO_MANY_VALUES: "TOO_MANY_VALUES"; readonly VALUE_OUT_OF_RANGE: "VALUE_OUT_OF_RANGE"; }; /** * @public */ export type ValidationExceptionErrorCode = (typeof ValidationExceptionErrorCode)[keyof typeof ValidationExceptionErrorCode]; /** * @public * @enum */ export declare const ValidationExceptionReason: { readonly BUSINESS_VALIDATION_FAILED: "BUSINESS_VALIDATION_FAILED"; readonly CANNOT_PARSE: "cannotParse"; readonly FIELD_VALIDATION_FAILED: "fieldValidationFailed"; readonly OTHER: "other"; readonly UNKNOWN_OPERATION: "unknownOperation"; }; /** * @public */ export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason]; /** * @public * @enum */ export declare const ResourceType: { readonly BENEFIT_ALLOCATION: "BENEFIT_ALLOCATION"; readonly OPPORTUNITY: "OPPORTUNITY"; }; /** * @public */ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType]; /** * @public * @enum */ export declare const BenefitAllocationStatus: { readonly ACTIVE: "ACTIVE"; readonly FULFILLED: "FULFILLED"; readonly INACTIVE: "INACTIVE"; }; /** * @public */ export type BenefitAllocationStatus = (typeof BenefitAllocationStatus)[keyof typeof BenefitAllocationStatus]; /** * @public * @enum */ export declare const FulfillmentType: { readonly ACCESS: "ACCESS"; readonly CASH: "CASH"; readonly CREDITS: "CREDITS"; }; /** * @public */ export type FulfillmentType = (typeof FulfillmentType)[keyof typeof FulfillmentType]; /** * @public * @enum */ export declare const BenefitApplicationStatus: { readonly ACTION_REQUIRED: "ACTION_REQUIRED"; readonly APPROVED: "APPROVED"; readonly CANCELED: "CANCELED"; readonly IN_REVIEW: "IN_REVIEW"; readonly PENDING_SUBMISSION: "PENDING_SUBMISSION"; readonly REJECTED: "REJECTED"; }; /** * @public */ export type BenefitApplicationStatus = (typeof BenefitApplicationStatus)[keyof typeof BenefitApplicationStatus]; /** * @public * @enum */ export declare const BenefitStatus: { readonly ACTIVE: "ACTIVE"; readonly INACTIVE: "INACTIVE"; }; /** * @public */ export type BenefitStatus = (typeof BenefitStatus)[keyof typeof BenefitStatus]; /** * @public * @enum */ export declare const CurrencyCode: { readonly AED: "AED"; readonly AMD: "AMD"; readonly ARS: "ARS"; readonly AUD: "AUD"; readonly AWG: "AWG"; readonly AZN: "AZN"; readonly BBD: "BBD"; readonly BDT: "BDT"; readonly BGN: "BGN"; readonly BMD: "BMD"; readonly BND: "BND"; readonly BOB: "BOB"; readonly BRL: "BRL"; readonly BSD: "BSD"; readonly BYR: "BYR"; readonly BZD: "BZD"; readonly CAD: "CAD"; readonly CHF: "CHF"; readonly CLP: "CLP"; readonly CNY: "CNY"; readonly COP: "COP"; readonly CRC: "CRC"; readonly CZK: "CZK"; readonly DKK: "DKK"; readonly DOP: "DOP"; readonly EEK: "EEK"; readonly EGP: "EGP"; readonly EUR: "EUR"; readonly GBP: "GBP"; readonly GEL: "GEL"; readonly GHS: "GHS"; readonly GTQ: "GTQ"; readonly GYD: "GYD"; readonly HKD: "HKD"; readonly HNL: "HNL"; readonly HRK: "HRK"; readonly HTG: "HTG"; readonly HUF: "HUF"; readonly IDR: "IDR"; readonly ILS: "ILS"; readonly INR: "INR"; readonly ISK: "ISK"; readonly JMD: "JMD"; readonly JPY: "JPY"; readonly KES: "KES"; readonly KHR: "KHR"; readonly KRW: "KRW"; readonly KYD: "KYD"; readonly KZT: "KZT"; readonly LBP: "LBP"; readonly LKR: "LKR"; readonly LTL: "LTL"; readonly LVL: "LVL"; readonly MAD: "MAD"; readonly MNT: "MNT"; readonly MOP: "MOP"; readonly MUR: "MUR"; readonly MVR: "MVR"; readonly MXN: "MXN"; readonly MYR: "MYR"; readonly NAD: "NAD"; readonly NGN: "NGN"; readonly NIO: "NIO"; readonly NOK: "NOK"; readonly NZD: "NZD"; readonly PAB: "PAB"; readonly PEN: "PEN"; readonly PHP: "PHP"; readonly PKR: "PKR"; readonly PLN: "PLN"; readonly PYG: "PYG"; readonly QAR: "QAR"; readonly RON: "RON"; readonly RUB: "RUB"; readonly SAR: "SAR"; readonly SEK: "SEK"; readonly SGD: "SGD"; readonly SIT: "SIT"; readonly SKK: "SKK"; readonly THB: "THB"; readonly TND: "TND"; readonly TRY: "TRY"; readonly TTD: "TTD"; readonly TWD: "TWD"; readonly TZS: "TZS"; readonly UAH: "UAH"; readonly USD: "USD"; readonly UYU: "UYU"; readonly UZS: "UZS"; readonly VND: "VND"; readonly XAF: "XAF"; readonly XCD: "XCD"; readonly XOF: "XOF"; readonly XPF: "XPF"; readonly ZAR: "ZAR"; }; /** * @public */ export type CurrencyCode = (typeof CurrencyCode)[keyof typeof CurrencyCode]; /** * @public * @enum */ export declare const FileType: { readonly CSV: "text/csv"; readonly DOC: "application/msword"; readonly DOCX: "application/vnd.openxmlformats-officedocument.wordprocessingml.document"; readonly JPG: "image/jpeg"; readonly PDF: "application/pdf"; readonly PNG: "image/png"; readonly PPTX: "application/vnd.openxmlformats-officedocument.presentationml.presentation"; readonly SVG: "image/svg+xml"; readonly XLSX: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"; }; /** * @public */ export type FileType = (typeof FileType)[keyof typeof FileType];