export interface WorkflowWithDetailsBankModel { /** * Auto-generated unique identifier for the workflow. */ guid?: string; /** * The associated banks\'s identifier. */ bank_guid?: string | null; /** * The associated customer\'s identifier. */ customer_guid?: string | null; /** * The type of workflow; one of plaid. */ type?: string; /** * The state of the workflow; one of storing, completed, or failed. */ state?: string; /** * The failure code for failed workflows. */ failure_code?: string | null; /** * ISO8601 datetime the record was created at. */ created_at?: string; /** * ISO8601 datetime the record was last updated at. */ updated_at?: string; /** * The Plaid link token generated by the workflow. */ plaid_link_token?: string | null; }