UUID
Last updated
Was this helpful?
Last updated
Was this helpful?
The UUID function returns a new UUID string
each time it is called.
This function requires no input. It returns a string
containing a new UUID, or "Universally Unique Identifier," each time it is called.
The UUID function recognizes no input parameters.
uuid_string(type: string
) A new UUID. This value is not tied to any user , and the returned UUID will be different each time the UUID function is called.
The following example uses the UUID function to generate a new Universally Unique Identifier:
Each time the UUID function is called, it returns a different value. Should it be called again, such as in the following example, it will return a different Universally Unique Identifier:
The UUID function returns a Universally Unique Identifier (UUID), or, as it sometimes referred to as, a Globally Unique Identifier (GUID). Both names refer to 128-bit labels that are functionally unique. This is not because the generated identifiers are registered anywhere, but because they contain enough degrees of freedom that any chance of duplication is close enough to zero to be negligible. For more on UUIDs, see .
The UUID function can be used to generate functionally unique identifiers independent of any identifiers Airkit assigns automatically. Note that the values returned by UUID functions are not saved anywhere in Airkit unless you explicitly save them as part of your application.