{"id":28436608,"url":"https://github.com/pace/cloud-sdk-capacitor-plugin","last_synced_at":"2025-07-06T22:04:02.194Z","repository":{"id":45078355,"uuid":"344417981","full_name":"pace/cloud-sdk-capacitor-plugin","owner":"pace","description":null,"archived":false,"fork":false,"pushed_at":"2022-01-10T14:42:55.000Z","size":289,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":7,"default_branch":"master","last_synced_at":"2025-06-27T19:41:50.280Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://developer.pace.cloud","language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pace.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-03-04T09:24:25.000Z","updated_at":"2022-01-10T14:42:59.000Z","dependencies_parsed_at":"2022-09-07T22:11:34.034Z","dependency_job_id":null,"html_url":"https://github.com/pace/cloud-sdk-capacitor-plugin","commit_stats":null,"previous_names":[],"tags_count":20,"template":false,"template_full_name":null,"purl":"pkg:github/pace/cloud-sdk-capacitor-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pace%2Fcloud-sdk-capacitor-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pace%2Fcloud-sdk-capacitor-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pace%2Fcloud-sdk-capacitor-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pace%2Fcloud-sdk-capacitor-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pace","download_url":"https://codeload.github.com/pace/cloud-sdk-capacitor-plugin/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pace%2Fcloud-sdk-capacitor-plugin/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263980087,"owners_count":23538918,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-06-05T22:39:42.431Z","updated_at":"2025-07-06T22:04:02.188Z","avatar_url":"https://github.com/pace.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"# cloud-sdk-capacitor-plugin\n\nPACE Cloud SDK is a Capacitor plugin to easily integrate PACE's Connected Fueling into your own apps.\n\n## Install\n\n```bash\nnpm install cloud-sdk-capacitor-plugin\nnpx cap sync\n```\n\n## API\n\n\u003cdocgen-index\u003e\n\n* [`setup(...)`](#setup)\n* [`respondToEvent(...)`](#respondtoevent)\n* [`getNearbyGasStations(...)`](#getnearbygasstations)\n* [`isPoiInRange(...)`](#ispoiinrange)\n* [`startApp(...)`](#startapp)\n* [`startFuelingApp(...)`](#startfuelingapp)\n* [`addListener(string, ...)`](#addlistenerstring)\n* [Interfaces](#interfaces)\n* [Type Aliases](#type-aliases)\n* [Enums](#enums)\n\n\u003c/docgen-index\u003e\n\n\u003cdocgen-api\u003e\n\u003c!--Update the source file JSDoc comments and rerun docgen to update the docs below--\u003e\n\n### setup(...)\n\n```typescript\nsetup(config: Configuration) =\u003e Promise\u003cboolean\u003e\n```\n\nSetup the plugin\n\n| Param        | Type                                                    | Description                                  |\n| ------------ | ------------------------------------------------------- | -------------------------------------------- |\n| **`config`** | \u003ccode\u003e\u003ca href=\"#configuration\"\u003eConfiguration\u003c/a\u003e\u003c/code\u003e | is the configuration provided to this method |\n\n**Returns:** \u003ccode\u003ePromise\u0026lt;boolean\u0026gt;\u003c/code\u003e\n\n--------------------\n\n\n### respondToEvent(...)\n\n```typescript\nrespondToEvent(response: EventResponse) =\u003e Promise\u003cboolean\u003e\n```\n\nMethod that can to be called whenever the client wants\nto communicate to the plugin in regards to a received event\n\n| Param          | Type                                                    | Description                      |\n| -------------- | ------------------------------------------------------- | -------------------------------- |\n| **`response`** | \u003ccode\u003e\u003ca href=\"#eventresponse\"\u003eEventResponse\u003c/a\u003e\u003c/code\u003e | is the response to a given event |\n\n**Returns:** \u003ccode\u003ePromise\u0026lt;boolean\u0026gt;\u003c/code\u003e\n\n--------------------\n\n\n### getNearbyGasStations(...)\n\n```typescript\ngetNearbyGasStations(options: { coordinate: [number, number]; radius: number; }) =\u003e Promise\u003c{ results: GasStation[]; }\u003e\n```\n\nReturns a list of gasStations based on a given coordinate\n\n| Param         | Type                                                           |\n| ------------- | -------------------------------------------------------------- |\n| **`options`** | \u003ccode\u003e{ coordinate: [number, number]; radius: number; }\u003c/code\u003e |\n\n**Returns:** \u003ccode\u003ePromise\u0026lt;{ results: GasStation[]; }\u0026gt;\u003c/code\u003e\n\n--------------------\n\n\n### isPoiInRange(...)\n\n```typescript\nisPoiInRange(options: { poiId: string; coordinate: [number, number]; }) =\u003e Promise\u003c{ result: boolean; }\u003e\n```\n\nCheck if there is a App for the given \u003ca href=\"#gasstation\"\u003eGasStation\u003c/a\u003e Id at the current location\n\n| Param         | Type                                                          |\n| ------------- | ------------------------------------------------------------- |\n| **`options`** | \u003ccode\u003e{ poiId: string; coordinate: [number, number]; }\u003c/code\u003e |\n\n**Returns:** \u003ccode\u003ePromise\u0026lt;{ result: boolean; }\u0026gt;\u003c/code\u003e\n\n--------------------\n\n\n### startApp(...)\n\n```typescript\nstartApp(options: { url: string | PresetUrl; }) =\u003e Promise\u003cboolean\u003e\n```\n\nStart an App via a url\n\n| Param         | Type                          |\n| ------------- | ----------------------------- |\n| **`options`** | \u003ccode\u003e{ url: string; }\u003c/code\u003e |\n\n**Returns:** \u003ccode\u003ePromise\u0026lt;boolean\u0026gt;\u003c/code\u003e\n\n--------------------\n\n\n### startFuelingApp(...)\n\n```typescript\nstartFuelingApp(options: { poiId: string; }) =\u003e Promise\u003cboolean\u003e\n```\n\nStart an App for a given poiId\n\n| Param         | Type                            |\n| ------------- | ------------------------------- |\n| **`options`** | \u003ccode\u003e{ poiId: string; }\u003c/code\u003e |\n\n**Returns:** \u003ccode\u003ePromise\u0026lt;boolean\u0026gt;\u003c/code\u003e\n\n--------------------\n\n\n### addListener(string, ...)\n\n```typescript\naddListener(eventName: string, listenerFunc: ListenerCallback) =\u003e PluginListenerHandle\n```\n\n| Param              | Type                                                          |\n| ------------------ | ------------------------------------------------------------- |\n| **`eventName`**    | \u003ccode\u003estring\u003c/code\u003e                                           |\n| **`listenerFunc`** | \u003ccode\u003e\u003ca href=\"#listenercallback\"\u003eListenerCallback\u003c/a\u003e\u003c/code\u003e |\n\n**Returns:** \u003ccode\u003e\u003ca href=\"#pluginlistenerhandle\"\u003ePluginListenerHandle\u003c/a\u003e\u003c/code\u003e\n\n--------------------\n\n\n### Interfaces\n\n\n#### Configuration\n\n| Prop                     | Type                                                              | Description                                                                                                                                                                                                                   |\n| ------------------------ | ----------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| **`apiKey`**             | \u003ccode\u003estring\u003c/code\u003e                                               | Use this property to provide the plugin with your PACE SDK API Key                                                                                                                                                            |\n| **`authenticationMode`** | \u003ccode\u003e\u003ca href=\"#authenticationmode\"\u003eAuthenticationMode\u003c/a\u003e\u003c/code\u003e | If you use native logins, then this should be set to '\u003ca href=\"#authenticationmode\"\u003eAuthenticationMode.NATIVE\u003c/a\u003e'. Defaults to '\u003ca href=\"#authenticationmode\"\u003eAuthenticationMode.WEB\u003c/a\u003e'                                    |\n| **`environment`**        | \u003ccode\u003e\u003ca href=\"#environment\"\u003eEnvironment\u003c/a\u003e\u003c/code\u003e               | Set your environment to '\u003ca href=\"#environment\"\u003eEnvironment.STAGE\u003c/a\u003e' or '\u003ca href=\"#environment\"\u003eEnvironment.SANDBOX\u003c/a\u003e' while developing or running tests. Defaults to '\u003ca href=\"#environment\"\u003eEnvironment.PRODUCTION\u003c/a\u003e' |\n\n\n#### EventResponse\n\n| Prop        | Type                | Description                                                       |\n| ----------- | ------------------- | ----------------------------------------------------------------- |\n| **`id`**    | \u003ccode\u003estring\u003c/code\u003e | The `id` must be the same as from the received event              |\n| **`name`**  | \u003ccode\u003estring\u003c/code\u003e | The `name` must be the same as from the received event            |\n| **`value`** | \u003ccode\u003estring\u003c/code\u003e | In case the `value` is an object, make sure to stringify it first |\n\n\n#### GasStation\n\n| Prop                              | Type                                        | Description                                             |\n| --------------------------------- | ------------------------------------------- | ------------------------------------------------------- |\n| **`id`**                          | \u003ccode\u003estring\u003c/code\u003e                         |                                                         |\n| **`name`**                        | \u003ccode\u003estring\u003c/code\u003e                         |                                                         |\n| **`address`**                     | \u003ccode\u003e\u003ca href=\"#address\"\u003eAddress\u003c/a\u003e\u003c/code\u003e |                                                         |\n| **`coordinates`**                 | \u003ccode\u003e[number, number]\u003c/code\u003e               | A set of coordinates, as [lng, lat]                     |\n| **`openingHours`**                | \u003ccode\u003eOpeningHour[]\u003c/code\u003e                  | The opening hours for the Gas Station                   |\n| **`fuelPrices`**                  | \u003ccode\u003eFuelPrice[]\u003c/code\u003e                    | The available fuel prices                               |\n| **`isConnectedFuelingAvailable`** | \u003ccode\u003eboolean\u003c/code\u003e                        | Indicates if the gasStations supports Connected Fueling |\n| **`lastUpdated`**                 | \u003ccode\u003e\u003ca href=\"#date\"\u003eDate\u003c/a\u003e\u003c/code\u003e       |                                                         |\n\n\n#### Address\n\n| Prop              | Type                |\n| ----------------- | ------------------- |\n| **`countryCode`** | \u003ccode\u003estring\u003c/code\u003e |\n| **`city`**        | \u003ccode\u003estring\u003c/code\u003e |\n| **`zipCode`**     | \u003ccode\u003estring\u003c/code\u003e |\n| **`suburb`**      | \u003ccode\u003estring\u003c/code\u003e |\n| **`state`**       | \u003ccode\u003estring\u003c/code\u003e |\n| **`street`**      | \u003ccode\u003estring\u003c/code\u003e |\n| **`houseNumber`** | \u003ccode\u003estring\u003c/code\u003e |\n\n\n#### OpeningHour\n\n| Prop        | Type                                                      |\n| ----------- | --------------------------------------------------------- |\n| **`day`**   | \u003ccode\u003e\u003ca href=\"#openinghourday\"\u003eOpeningHourDay\u003c/a\u003e\u003c/code\u003e |\n| **`hours`** | \u003ccode\u003e[number, number][]\u003c/code\u003e                           |\n\n\n#### FuelPrice\n\n| Prop                  | Type                                                    |\n| --------------------- | ------------------------------------------------------- |\n| **`fuelType`**        | \u003ccode\u003e\u003ca href=\"#fueltype\"\u003eFuelType\u003c/a\u003e\u003c/code\u003e           |\n| **`productName`**     | \u003ccode\u003estring\u003c/code\u003e                                     |\n| **`price`**           | \u003ccode\u003enumber\u003c/code\u003e                                     |\n| **`priceFormatting`** | \u003ccode\u003estring\u003c/code\u003e                                     |\n| **`unit`**            | \u003ccode\u003e\u003ca href=\"#fuelpriceunit\"\u003eFuelPriceUnit\u003c/a\u003e\u003c/code\u003e |\n| **`currency`**        | \u003ccode\u003e\u003ca href=\"#fuelcurrency\"\u003eFuelCurrency\u003c/a\u003e\u003c/code\u003e   |\n| **`updated`**         | \u003ccode\u003enumber\u003c/code\u003e                                     |\n\n\n#### Date\n\nEnables basic storage and retrieval of dates and times.\n\n| Method                 | Signature                                                                                                    | Description                                                                                                                             |\n| ---------------------- | ------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------- |\n| **toString**           | () =\u0026gt; string                                                                                              | Returns a string representation of a date. The format of the string depends on the locale.                                              |\n| **toDateString**       | () =\u0026gt; string                                                                                              | Returns a date as a string value.                                                                                                       |\n| **toTimeString**       | () =\u0026gt; string                                                                                              | Returns a time as a string value.                                                                                                       |\n| **toLocaleString**     | () =\u0026gt; string                                                                                              | Returns a value as a string value appropriate to the host environment's current locale.                                                 |\n| **toLocaleDateString** | () =\u0026gt; string                                                                                              | Returns a date as a string value appropriate to the host environment's current locale.                                                  |\n| **toLocaleTimeString** | () =\u0026gt; string                                                                                              | Returns a time as a string value appropriate to the host environment's current locale.                                                  |\n| **valueOf**            | () =\u0026gt; number                                                                                              | Returns the stored time value in milliseconds since midnight, January 1, 1970 UTC.                                                      |\n| **getTime**            | () =\u0026gt; number                                                                                              | Gets the time value in milliseconds.                                                                                                    |\n| **getFullYear**        | () =\u0026gt; number                                                                                              | Gets the year, using local time.                                                                                                        |\n| **getUTCFullYear**     | () =\u0026gt; number                                                                                              | Gets the year using Universal Coordinated Time (UTC).                                                                                   |\n| **getMonth**           | () =\u0026gt; number                                                                                              | Gets the month, using local time.                                                                                                       |\n| **getUTCMonth**        | () =\u0026gt; number                                                                                              | Gets the month of a \u003ca href=\"#date\"\u003eDate\u003c/a\u003e object using Universal Coordinated Time (UTC).                                             |\n| **getDate**            | () =\u0026gt; number                                                                                              | Gets the day-of-the-month, using local time.                                                                                            |\n| **getUTCDate**         | () =\u0026gt; number                                                                                              | Gets the day-of-the-month, using Universal Coordinated Time (UTC).                                                                      |\n| **getDay**             | () =\u0026gt; number                                                                                              | Gets the day of the week, using local time.                                                                                             |\n| **getUTCDay**          | () =\u0026gt; number                                                                                              | Gets the day of the week using Universal Coordinated Time (UTC).                                                                        |\n| **getHours**           | () =\u0026gt; number                                                                                              | Gets the hours in a date, using local time.                                                                                             |\n| **getUTCHours**        | () =\u0026gt; number                                                                                              | Gets the hours value in a \u003ca href=\"#date\"\u003eDate\u003c/a\u003e object using Universal Coordinated Time (UTC).                                       |\n| **getMinutes**         | () =\u0026gt; number                                                                                              | Gets the minutes of a \u003ca href=\"#date\"\u003eDate\u003c/a\u003e object, using local time.                                                                |\n| **getUTCMinutes**      | () =\u0026gt; number                                                                                              | Gets the minutes of a \u003ca href=\"#date\"\u003eDate\u003c/a\u003e object using Universal Coordinated Time (UTC).                                           |\n| **getSeconds**         | () =\u0026gt; number                                                                                              | Gets the seconds of a \u003ca href=\"#date\"\u003eDate\u003c/a\u003e object, using local time.                                                                |\n| **getUTCSeconds**      | () =\u0026gt; number                                                                                              | Gets the seconds of a \u003ca href=\"#date\"\u003eDate\u003c/a\u003e object using Universal Coordinated Time (UTC).                                           |\n| **getMilliseconds**    | () =\u0026gt; number                                                                                              | Gets the milliseconds of a \u003ca href=\"#date\"\u003eDate\u003c/a\u003e, using local time.                                                                  |\n| **getUTCMilliseconds** | () =\u0026gt; number                                                                                              | Gets the milliseconds of a \u003ca href=\"#date\"\u003eDate\u003c/a\u003e object using Universal Coordinated Time (UTC).                                      |\n| **getTimezoneOffset**  | () =\u0026gt; number                                                                                              | Gets the difference in minutes between the time on the local computer and Universal Coordinated Time (UTC).                             |\n| **setTime**            | (time: number) =\u0026gt; number                                                                                  | Sets the date and time value in the \u003ca href=\"#date\"\u003eDate\u003c/a\u003e object.                                                                    |\n| **setMilliseconds**    | (ms: number) =\u0026gt; number                                                                                    | Sets the milliseconds value in the \u003ca href=\"#date\"\u003eDate\u003c/a\u003e object using local time.                                                    |\n| **setUTCMilliseconds** | (ms: number) =\u0026gt; number                                                                                    | Sets the milliseconds value in the \u003ca href=\"#date\"\u003eDate\u003c/a\u003e object using Universal Coordinated Time (UTC).                              |\n| **setSeconds**         | (sec: number, ms?: number \\| undefined) =\u0026gt; number                                                         | Sets the seconds value in the \u003ca href=\"#date\"\u003eDate\u003c/a\u003e object using local time.                                                         |\n| **setUTCSeconds**      | (sec: number, ms?: number \\| undefined) =\u0026gt; number                                                         | Sets the seconds value in the \u003ca href=\"#date\"\u003eDate\u003c/a\u003e object using Universal Coordinated Time (UTC).                                   |\n| **setMinutes**         | (min: number, sec?: number \\| undefined, ms?: number \\| undefined) =\u0026gt; number                              | Sets the minutes value in the \u003ca href=\"#date\"\u003eDate\u003c/a\u003e object using local time.                                                         |\n| **setUTCMinutes**      | (min: number, sec?: number \\| undefined, ms?: number \\| undefined) =\u0026gt; number                              | Sets the minutes value in the \u003ca href=\"#date\"\u003eDate\u003c/a\u003e object using Universal Coordinated Time (UTC).                                   |\n| **setHours**           | (hours: number, min?: number \\| undefined, sec?: number \\| undefined, ms?: number \\| undefined) =\u0026gt; number | Sets the hour value in the \u003ca href=\"#date\"\u003eDate\u003c/a\u003e object using local time.                                                            |\n| **setUTCHours**        | (hours: number, min?: number \\| undefined, sec?: number \\| undefined, ms?: number \\| undefined) =\u0026gt; number | Sets the hours value in the \u003ca href=\"#date\"\u003eDate\u003c/a\u003e object using Universal Coordinated Time (UTC).                                     |\n| **setDate**            | (date: number) =\u0026gt; number                                                                                  | Sets the numeric day-of-the-month value of the \u003ca href=\"#date\"\u003eDate\u003c/a\u003e object using local time.                                        |\n| **setUTCDate**         | (date: number) =\u0026gt; number                                                                                  | Sets the numeric day of the month in the \u003ca href=\"#date\"\u003eDate\u003c/a\u003e object using Universal Coordinated Time (UTC).                        |\n| **setMonth**           | (month: number, date?: number \\| undefined) =\u0026gt; number                                                     | Sets the month value in the \u003ca href=\"#date\"\u003eDate\u003c/a\u003e object using local time.                                                           |\n| **setUTCMonth**        | (month: number, date?: number \\| undefined) =\u0026gt; number                                                     | Sets the month value in the \u003ca href=\"#date\"\u003eDate\u003c/a\u003e object using Universal Coordinated Time (UTC).                                     |\n| **setFullYear**        | (year: number, month?: number \\| undefined, date?: number \\| undefined) =\u0026gt; number                         | Sets the year of the \u003ca href=\"#date\"\u003eDate\u003c/a\u003e object using local time.                                                                  |\n| **setUTCFullYear**     | (year: number, month?: number \\| undefined, date?: number \\| undefined) =\u0026gt; number                         | Sets the year value in the \u003ca href=\"#date\"\u003eDate\u003c/a\u003e object using Universal Coordinated Time (UTC).                                      |\n| **toUTCString**        | () =\u0026gt; string                                                                                              | Returns a date converted to a string using Universal Coordinated Time (UTC).                                                            |\n| **toISOString**        | () =\u0026gt; string                                                                                              | Returns a date as a string value in ISO format.                                                                                         |\n| **toJSON**             | (key?: any) =\u0026gt; string                                                                                     | Used by the JSON.stringify method to enable the transformation of an object's data for JavaScript Object Notation (JSON) serialization. |\n\n\n#### PluginListenerHandle\n\n| Prop         | Type                                      |\n| ------------ | ----------------------------------------- |\n| **`remove`** | \u003ccode\u003e() =\u0026gt; Promise\u0026lt;void\u0026gt;\u003c/code\u003e |\n\n\n### Type Aliases\n\n\n#### ListenerCallback\n\n\u003ccode\u003e(err: any, ...args: any[]): void\u003c/code\u003e\n\n\n### Enums\n\n\n#### AuthenticationMode\n\n| Members      | Value                 |\n| ------------ | --------------------- |\n| **`WEB`**    | \u003ccode\u003e'web'\u003c/code\u003e    |\n| **`NATIVE`** | \u003ccode\u003e'native'\u003c/code\u003e |\n\n\n#### Environment\n\n| Members           | Value                      |\n| ----------------- | -------------------------- |\n| **`PRODUCTION`**  | \u003ccode\u003e'production'\u003c/code\u003e  |\n| **`DEVELOPMENT`** | \u003ccode\u003e'development'\u003c/code\u003e |\n| **`STAGE`**       | \u003ccode\u003e'stage'\u003c/code\u003e       |\n| **`SANDBOX`**     | \u003ccode\u003e'sandbox'\u003c/code\u003e     |\n\n\n#### OpeningHourDay\n\n| Members         | Value                    |\n| --------------- | ------------------------ |\n| **`MONDAY`**    | \u003ccode\u003e'monday'\u003c/code\u003e    |\n| **`TUESDAY`**   | \u003ccode\u003e'tuesday'\u003c/code\u003e   |\n| **`WEDNESDAY`** | \u003ccode\u003e'wednesday'\u003c/code\u003e |\n| **`THURSDAY`**  | \u003ccode\u003e'thursday'\u003c/code\u003e  |\n| **`FRIDAY`**    | \u003ccode\u003e'friday'\u003c/code\u003e    |\n| **`SATURDAY`**  | \u003ccode\u003e'saturday'\u003c/code\u003e  |\n| **`SUNDAY`**    | \u003ccode\u003e'sunday'\u003c/code\u003e    |\n\n\n#### FuelType\n\n| Members                  | Value                             |\n| ------------------------ | --------------------------------- |\n| **`RON98`**              | \u003ccode\u003e'ron98'\u003c/code\u003e              |\n| **`RON98E5`**            | \u003ccode\u003e'ron98e5'\u003c/code\u003e            |\n| **`RON95E10`**           | \u003ccode\u003e'ron95e10'\u003c/code\u003e           |\n| **`DIESEL`**             | \u003ccode\u003e'diesel'\u003c/code\u003e             |\n| **`E85`**                | \u003ccode\u003e'e85'\u003c/code\u003e                |\n| **`RON91`**              | \u003ccode\u003e'ron91'\u003c/code\u003e              |\n| **`RON95E5`**            | \u003ccode\u003e'ron95e5'\u003c/code\u003e            |\n| **`RON100`**             | \u003ccode\u003e'ron100'\u003c/code\u003e             |\n| **`DIESELGTL`**          | \u003ccode\u003e'dieselGtl'\u003c/code\u003e          |\n| **`DIESELB7`**           | \u003ccode\u003e'dieselB7'\u003c/code\u003e           |\n| **`DIESELPREMIUM`**      | \u003ccode\u003e'dieselPremium'\u003c/code\u003e      |\n| **`LPG`**                | \u003ccode\u003e'lpg'\u003c/code\u003e                |\n| **`CNG`**                | \u003ccode\u003e'cng'\u003c/code\u003e                |\n| **`LNG`**                | \u003ccode\u003e'lng'\u003c/code\u003e                |\n| **`H2`**                 | \u003ccode\u003e'h2'\u003c/code\u003e                 |\n| **`TRUCKDIESEL`**        | \u003ccode\u003e'truckDiesel'\u003c/code\u003e        |\n| **`ADBLUE`**             | \u003ccode\u003e'adBlue'\u003c/code\u003e             |\n| **`TRUCKADBLUE`**        | \u003ccode\u003e'truckAdBlue'\u003c/code\u003e        |\n| **`TRUCKDIESELPREMIUM`** | \u003ccode\u003e'truckDieselPremium'\u003c/code\u003e |\n| **`TRUCKLPG`**           | \u003ccode\u003e'truckLpg'\u003c/code\u003e           |\n| **`HEATINGOIL`**         | \u003ccode\u003e'heatingOil'\u003c/code\u003e         |\n\n\n#### FuelPriceUnit\n\n| Members     | Value            |\n| ----------- | ---------------- |\n| **`LITRE`** | \u003ccode\u003e'L'\u003c/code\u003e |\n\n\n#### FuelCurrency\n\n| Members   | Value              |\n| --------- | ------------------ |\n| **`EUR`** | \u003ccode\u003e'EUR'\u003c/code\u003e |\n\n\n#### PresetUrl\n\n| Members            | Value                       |\n| ------------------ | --------------------------- |\n| **`PACE_ID`**      | \u003ccode\u003e'paceID'\u003c/code\u003e       |\n| **`PAYMENT`**      | \u003ccode\u003e'payment'\u003c/code\u003e      |\n| **`TRANSACTIONS`** | \u003ccode\u003e'transactions'\u003c/code\u003e |\n\n\u003c/docgen-api\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpace%2Fcloud-sdk-capacitor-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpace%2Fcloud-sdk-capacitor-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpace%2Fcloud-sdk-capacitor-plugin/lists"}